Skip to content

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+728
-287
lines changed
 

‎base/cmake_package.py

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ def configure(ctx, stage_args):
3434
else:
3535
conf_lines.append('-DCMAKE_BUILD_TYPE:STRING=Release')
3636

37+
if ctx.parameters['platform'] == 'Darwin':
38+
conf_lines.append('-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=""')
39+
3740
#cmake needs to be given all the dependency dirs as prefix paths
3841
#so that we search the hashdist directories before the system directories
3942
#CMake doesn't use the CPPFLAGS implicitly to find libraries

‎base/setuptools_package.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ build_stages:
2222
handler: bash
2323
bash: |
2424
${PYTHON} -c 'import setuptools; __file__="setup.py"; exec(open(__file__).read())' \
25+
${SETUPTOOLS_PACKAGE_EXTRA_OPTIONS} \
2526
install \
2627
--prefix=. --root=${ARTIFACT} \
2728
--single-version-externally-managed

0 commit comments

Comments
 (0)
Please sign in to comment.