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 20222f6 commit 438830eCopy full SHA for 438830e
cpython-unix/build-cpython.sh
@@ -466,8 +466,8 @@ if [ -n "${CPYTHON_OPTIMIZED}" ]; then
466
CONFIGURE_FLAGS="${CONFIGURE_FLAGS} --enable-bolt"
467
fi
468
469
- # Allow users to enable the experimental JIT on 3.13+
470
- if [[ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" ]]; then
+ # Allow users to enable the experimental JIT on 3.13+ (but not on musl)
+ if [[ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" && ! "${CC}" = "musl-clang" ]]; then
471
472
# Do not enable on x86-64 macOS because the JIT requires macOS 11+ and we are currently
473
# using 10.15 as a minimum version.
0 commit comments