We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cce7f1 commit db52d2bCopy full SHA for db52d2b
cpython-unix/build-cpython.sh
@@ -431,8 +431,8 @@ if [ -n "${CPYTHON_OPTIMIZED}" ]; then
431
CONFIGURE_FLAGS="${CONFIGURE_FLAGS} --enable-bolt"
432
fi
433
434
- # Allow users to enable the experimental JIT on 3.13+
435
- 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
436
437
# The JIT build is failing on macOS due to compiler errors
438
# Only enable on Linux / 3.13 until that's fixed upstream
0 commit comments