File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1717 exit 1
1818fi
1919
20+ # rattler-build by default set a target of 10.9
21+ # override it to at least 10.12
22+ case ${MACOSX_DEPLOYMENT_TARGET:- 10.12} in
23+ 10.12|10.13|10.14|10.15|10.16)
24+ ;;
25+ 10.* )
26+ export MACOSX_DEPLOYMENT_TARGET=10.12
27+ ;;
28+ * )
29+ ;;
30+ esac
31+
2032BUILD_DIR=" ../build_${PYTHON_VARIANT} "
2133mkdir -p " ${BUILD_DIR} "
2234cd " ${BUILD_DIR} "
Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ outputs:
3838 build :
3939 - ${{ compiler('c') }}
4040 - ${{ compiler('cxx') }}
41+ # Note that we are not using stdlib arguments which means the packages
42+ # are built for the build settings and are not relocatable to a different
43+ # machine that has a older system version. (eg: macOS/glibc version)
4144 - make
4245 - pkg-config
4346 # configure script looks for llvm-ar for lto
You can’t perform that action at this time.
0 commit comments