summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure24
1 files changed, 15 insertions, 9 deletions
diff --git a/configure b/configure
index 24e7396..cc85aed 100755
--- a/configure
+++ b/configure
@@ -8235,18 +8235,24 @@ else $as_nop
fi
case $enable_experimental_jit in
- no) enable_experimental_jit=no ;;
- yes) enable_experimental_jit="-D_Py_JIT -D_Py_TIER2=1" ;;
- yes-off) enable_experimental_jit="-D_Py_JIT -D_Py_TIER2=3" ;;
- interpreter) enable_experimental_jit="-D_Py_TIER2=4" ;;
- interpreter-off) enable_experimental_jit="-D_Py_TIER2=6" ;; # Secret option
+ no) jit_flags=""; tier2_flags="" ;;
+ yes) jit_flags="-D_Py_JIT"; tier2_flags="-D_Py_TIER2=1" ;;
+ yes-off) jit_flags="-D_Py_JIT"; tier2_flags="-D_Py_TIER2=3" ;;
+ interpreter) jit_flags=""; tier2_flags="-D_Py_TIER2=4" ;;
+ interpreter-off) jit_flags=""; tier2_flags="-D_Py_TIER2=6" ;; # Secret option
*) as_fn_error $? "invalid argument: --enable-experimental-jit=$enable_experimental_jit; expected no|yes|yes-off|interpreter" "$LINENO" 5 ;;
esac
-if test "x$enable_experimental_jit" = xno
+if ${tier2_flags:+false} :
then :
else $as_nop
- as_fn_append CFLAGS_NODIST " $enable_experimental_jit"
+ as_fn_append CFLAGS_NODIST " $tier2_flags"
+fi
+if ${jit_flags:+false} :
+then :
+
+else $as_nop
+ as_fn_append CFLAGS_NODIST " $jit_flags"
REGEN_JIT_COMMAND="\$(PYTHON_FOR_REGEN) \$(srcdir)/Tools/jit/build.py $host"
JIT_STENCILS_H="jit_stencils.h"
if test "x$Py_DEBUG" = xtrue
@@ -8256,8 +8262,8 @@ fi
fi
-{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_experimental_jit" >&5
-printf "%s\n" "$enable_experimental_jit" >&6; }
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $tier2_flags $jit_flags" >&5
+printf "%s\n" "$tier2_flags $jit_flags" >&6; }
# Enable optimization flags