File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/scripts/python_wheels Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2525wget https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.gz --quiet
2626tar -xzf boost_1_87_0.tar.gz
2727cd boost_1_87_0
28- ./bootstrap.sh --prefix=/opt/boost
28+ ./bootstrap.sh
2929
3030# Default to macOS 10.15 if MACOSX_DEPLOYMENT_TARGET is not set
3131if [[ -z " ${MACOSX_DEPLOYMENT_TARGET} " ]]; then
3232 export MACOSX_DEPLOYMENT_TARGET=" 10.15"
3333fi
3434
3535if [ " $( uname) " == " Linux" ]; then
36- ./b2 install --prefix=/opt/boost -- with=all -d0
36+ ./b2 install --with=all -d0
3737elif [ " $( uname) " == " Darwin" ]; then
38- ./b2 install --prefix=/opt/boost -- with=all -d0 cxxflags=" -mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET} " linkflags=" -mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET} "
38+ ./b2 install --with=all -d0 cxxflags=" -mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET} " linkflags=" -mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET} "
3939fi
4040cd ..
4141
You can’t perform that action at this time.
0 commit comments