To test "build4mac.py" family with non-standard script language support like Anaconda.

This refs #4.
This commit is contained in:
Kazunari Sekigawa 2018-01-03 07:41:44 +09:00
parent 3bc7756aaf
commit 016e5adbeb
2 changed files with 10 additions and 6 deletions

View File

@ -376,9 +376,9 @@ def RunMainBuildBash():
# (C) want Qt bindings with Ruby scripts? # (C) want Qt bindings with Ruby scripts?
if NoQtBindings: if NoQtBindings:
parameters += "\\\n -without-qtbinding" parameters += " \\\n -without-qtbinding"
else: else:
parameters += "\\\n -with-qtbinding" parameters += " \\\n -with-qtbinding"
# (D) options to `make` tool # (D) options to `make` tool
if not MakeOptions == "": if not MakeOptions == "":

View File

@ -123,18 +123,22 @@ PythonHighSierra= { 'exe': '/System/Library/Frameworks/Python.framework/Versions
} }
# Using anaconda (https://www.anaconda.com/download/#macos): *+*+*+ EXPERIMENTAL *+*+*+ # Using anaconda (https://www.anaconda.com/download/#macos): *+*+*+ EXPERIMENTAL *+*+*+
# prepared by: $ conda create -n py27klayout python=2.7 # If the path to your `conda` command is '$HOME/anaconda/bin/conda'
# and your Python environment was prepared by: $ conda create -n py27klayout python=2.7
#
# No additional modules are added in the beginning. # No additional modules are added in the beginning.
Anaconda27 = { 'exe': '$HOME/anaconda/envs/py27klayout/bin/python2.7' , Anaconda27 = { 'exe': '$HOME/anaconda/envs/py27klayout/bin/python2.7' ,
'inc': '$HOME/anaconda/envs/py27klayout/include', 'inc': '$HOME/anaconda/envs/py27klayout/include/python2.7',
'lib': '$HOME/anaconda/envs/py27klayout/lib/libpython2.7.dylib' 'lib': '$HOME/anaconda/envs/py27klayout/lib/libpython2.7.dylib'
} }
# Using anaconda (https://www.anaconda.com/download/#macos): *+*+*+ EXPERIMENTAL *+*+*+ # Using anaconda (https://www.anaconda.com/download/#macos): *+*+*+ EXPERIMENTAL *+*+*+
# prepared by: $ conda create -n py36klayout python=3.6 # If the path to your `conda` command is '$HOME/anaconda/bin/conda'
# and your Python environment was prepared by: $ conda create -n py36klayout python=3.6
#
# No additional modules are added in the beginning. # No additional modules are added in the beginning.
Anaconda36 = { 'exe': '$HOME/anaconda/envs/py36klayout/bin/python3.6' , Anaconda36 = { 'exe': '$HOME/anaconda/envs/py36klayout/bin/python3.6' ,
'inc': '$HOME/anaconda/envs/py36klayout/include', 'inc': '$HOME/anaconda/envs/py36klayout/include/python3.6m',
'lib': '$HOME/anaconda/envs/py36klayout/lib/libpython3.6m.dylib' 'lib': '$HOME/anaconda/envs/py36klayout/lib/libpython3.6m.dylib'
} }