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
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1827,22 +1827,22 @@ case $enable_experimental_jit in
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, or define to 2 if you want to enable tier 2 interpreter])
1831
1831
;;
1832
1832
yes-off)
1833
1833
jit_flags="-D_Py_JIT";
1834
1834
tier2_flags="-D_Py_TIER2=3";
1835
-
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, or define to 2 if you want to enable tier 2 interpreter])
1836
1836
;;
1837
1837
interpreter)
1838
1838
jit_flags="";
1839
1839
tier2_flags="-D_Py_TIER2=4";
1840
-
AC_DEFINE([Py_JIT_ENABLED], [2], [Define to 2 if you want to build an interpreter with enabled tier 2 interpreter])
1840
+
AC_DEFINE([Py_JIT_ENABLED], [2], [Define to 1 if you want to build an interpreter with JIT, or define to 2 if you want to enable tier 2 interpreter])
1841
1841
;;
1842
1842
interpreter-off)
1843
1843
jit_flags="";
1844
1844
tier2_flags="-D_Py_TIER2=6";
1845
-
AC_DEFINE([Py_JIT_ENABLED], [2], [Define to 2 if you want to build an interpreter with enabled tier 2 interpreter])# Secret option
1845
+
AC_DEFINE([Py_JIT_ENABLED], [2], [Define to 1 if you want to build an interpreter with JIT, or define to 2 if you want to enable tier 2 interpreter])# Secret option
0 commit comments