Skip to content

Commit 278685e

Browse files
committed
scripts: Remove macOS SYSROOT specification
1 parent 2f14827 commit 278685e

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

scripts/macpython-build-wheels.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ for VENV in "${VENVS[@]}"; do
9999
-DITK_BINARY_DIR:PATH=${build_path} \
100100
-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=${osx_target} \
101101
-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64 \
102-
-DCMAKE_OSX_SYSROOT:STRING=macosx10.13 \
103102
-DITK_WRAP_unsigned_short:BOOL=ON \
104103
-DPYTHON_EXECUTABLE:FILEPATH=${PYTHON_EXECUTABLE} \
105104
-DPYTHON_INCLUDE_DIR:PATH=${PYTHON_INCLUDE_DIR} \
@@ -125,7 +124,6 @@ for VENV in "${VENVS[@]}"; do
125124
-DBUILD_TESTING:BOOL=OFF \
126125
-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=${osx_target} \
127126
-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64 \
128-
-DCMAKE_OSX_SYSROOT:STRING=macosx10.13 \
129127
-DITK_WRAP_unsigned_short:BOOL=ON \
130128
-DPYTHON_EXECUTABLE:FILEPATH=${PYTHON_EXECUTABLE} \
131129
-DPYTHON_INCLUDE_DIR:PATH=${PYTHON_INCLUDE_DIR} \
@@ -153,7 +151,6 @@ for VENV in "${VENVS[@]}"; do
153151
-DITK_BINARY_DIR:PATH=${build_path} \
154152
-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=${osx_target} \
155153
-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64 \
156-
-DCMAKE_OSX_SYSROOT:STRING=macosx10.13 \
157154
-DITKPythonPackage_ITK_BINARY_REUSE:BOOL=ON \
158155
-DITKPythonPackage_WHEEL_NAME:STRING=${wheel_name} \
159156
-DITK_WRAP_unsigned_short:BOOL=ON \

scripts/macpython-download-cache-and-build-module-wheels.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@
66
brew update
77
brew install zstd aria2 gnu-tar doxygen
88
brew upgrade cmake
9-
# The Azure systems current do not have the 10.13 SDK, required by the
10-
# ITKPythonBuilds
11-
SDK_PATH='/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk'
12-
if test ! -e $SDK_PATH; then
13-
sudo ln -s /Applications/Xcode_9.4.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
14-
fi
159
aria2c -c --file-allocation=none -o ITKPythonBuilds-macosx.tar.zst -s 10 -x 10 https://github.com/InsightSoftwareConsortium/ITKPythonBuilds/releases/download/${ITK_PACKAGE_VERSION:=v5.0.1}/ITKPythonBuilds-macosx.tar.zst
1610
unzstd ITKPythonBuilds-macosx.tar.zst -o ITKPythonBuilds-macosx.tar
1711
PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH"

0 commit comments

Comments
 (0)