You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configure.ac
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1823,23 +1823,27 @@ case $enable_experimental_jit in
1823
1823
no)
1824
1824
jit_flags="";
1825
1825
tier2_flags="";
1826
-
AC_DEFINE([Py_JIT_ENABLED], [1], [Define to 1 if you want to build an interpreter with JIT]);;
1826
+
;;
1827
1827
yes)
1828
1828
jit_flags="-D_Py_JIT";
1829
1829
tier2_flags="-D_Py_TIER2=1";
1830
-
AC_DEFINE([Py_JIT_ENABLED], [1], [Define to 1 if you want to build an interpreter with JIT]) ;;
1830
+
AC_DEFINE([Py_JIT_ENABLED], [1], [Define to 1 if you want to build an interpreter with JIT])
1831
+
;;
1831
1832
yes-off)
1832
1833
jit_flags="-D_Py_JIT";
1833
1834
tier2_flags="-D_Py_TIER2=3";
1834
-
AC_DEFINE([Py_JIT_ENABLED], [1], [Define to 1 if you want to build an interpreter with JIT]) ;;
1835
+
AC_DEFINE([Py_JIT_ENABLED], [1], [Define to 1 if you want to build an interpreter with JIT])
1836
+
;;
1835
1837
interpreter)
1836
1838
jit_flags="";
1837
1839
tier2_flags="-D_Py_TIER2=4";
1838
-
AC_DEFINE([Py_JIT_ENABLED], ["interpreter"], [Define to interpreter if you want to build an interpreter with enabled tier 2 interpreter]) ;;
1840
+
AC_DEFINE([Py_JIT_ENABLED], ["interpreter"], [Define to interpreter if you want to build an interpreter with enabled tier 2 interpreter])
1841
+
;;
1839
1842
interpreter-off)
1840
-
jit_flags="";
1841
-
tier2_flags="-D_Py_TIER2=6";
1842
-
AC_DEFINE([Py_JIT_ENABLED], ["interpreter"], [Define to interpreter if you want to build an interpreter with enabled tier 2 interpreter]) ;; # Secret option
1843
+
jit_flags="";
1844
+
tier2_flags="-D_Py_TIER2=6";
1845
+
AC_DEFINE([Py_JIT_ENABLED], ["interpreter"], [Define to interpreter if you want to build an interpreter with enabled tier 2 interpreter])# Secret option
0 commit comments