We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ffdb1c2 + 3f5f4b2 commit 58f8777Copy full SHA for 58f8777
misc/openlane/build.sh
@@ -20,13 +20,14 @@ set -ex
20
UNAME_OUT="$(uname -s)"
21
case "${UNAME_OUT}" in
22
Linux*) OS=Linux;;
23
+ Darwin*) OS=Mac;;
24
*) OS="${UNAME_OUT}"
25
echo "Unknown OS: ${OS}"
26
exit;;
27
esac
28
29
mkdir -p $PREFIX/share/
-cp -ar $SRC_DIR $PREFIX/share/openlane
30
+cp -a $SRC_DIR $PREFIX/share/openlane
31
# define system and pdk variables
32
mkdir -p $PREFIX/share/openlane/install
33
echo $PKG_VERSION-conda > $PREFIX/share/openlane/install/installed_version
misc/openlane/meta.yaml
@@ -13,6 +13,7 @@ source:
13
- disable-version-check.patch # conda versions differ from openlane metadata
14
15
build:
16
+ noarch: generic
17
# number: 201803050325
18
number: {{ environ.get('DATE_NUM') }}
19
# string: 20180305_0325
0 commit comments