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.
enable-experimental-jit=yes-off
1 parent aa430e2 commit 85af95aCopy full SHA for 85af95a
cpython-unix/build-cpython.sh
@@ -424,6 +424,11 @@ if [ -n "${CPYTHON_OPTIMIZED}" ]; then
424
if [[ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_12}" && -n "${BOLT_CAPABLE}" ]]; then
425
CONFIGURE_FLAGS="${CONFIGURE_FLAGS} --enable-bolt"
426
fi
427
+
428
+ # Allow users to enable the experimental JIT on 3.13+
429
+ if [[ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_13}" ]]; then
430
+ CONFIGURE_FLAGS="${CONFIGURE_FLAGS} --enable-experimental-jit=yes-off"
431
+ fi
432
433
434
if [ -n "${CPYTHON_LTO}" ]; then
0 commit comments