We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5724d commit bee3baaCopy full SHA for bee3baa
cpython-unix/build-cpython.sh
@@ -466,7 +466,8 @@ if [ -n "${CPYTHON_OPTIMIZED}" ]; then
466
467
# Do not enable on x86-64 macOS because the JIT requires macOS 11+ and we are currently
468
# using 10.15 as a miniumum version.
469
- if [ "${TARGET_TRIPLE}" != "x86_64-apple-darwin" ]; then
+ # Do not enable when free-threading, because they're not compatible yet.
470
+ if [[ ! "${TARGET_TRIPLE}" == "x86_64-apple-darwin" || -n "${CPYTHON_FREETHREADED}" ]]; then
471
CONFIGURE_FLAGS="${CONFIGURE_FLAGS} --enable-experimental-jit=yes-off"
472
fi
473
0 commit comments