Unverified Commit 40cf439e authored by Sean Gillies's avatar Sean Gillies Committed by GitHub
Browse files

Add one space in macos_arm64_native_build_setup

When appending to ARCHFLAGS. Otherwise it's easy to see clang fail because of `-arch arm64-arch arm64`.
parent 2e10577a
...@@ -501,7 +501,7 @@ function macos_arm64_native_build_setup { ...@@ -501,7 +501,7 @@ function macos_arm64_native_build_setup {
export PLAT="arm64" export PLAT="arm64"
# We don't want universal2 builds and only want an arm64 build # We don't want universal2 builds and only want an arm64 build
export _PYTHON_HOST_PLATFORM="macosx-11.0-arm64" export _PYTHON_HOST_PLATFORM="macosx-11.0-arm64"
export ARCHFLAGS+="-arch arm64" export ARCHFLAGS+=" -arch arm64"
$@ $@
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment