We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a1d6cc commit cce89a6Copy full SHA for cce89a6
1 file changed
configure.ac
@@ -3963,7 +3963,7 @@ AS_CASE(["${YJIT_SUPPORT}"],
3963
3964
ZJIT_LIBS=
3965
AS_CASE(["${ZJIT_SUPPORT}"],
3966
-[yes|dev], [
+[yes|dev|dev_nodebug], [
3967
AS_IF([test x"$RUSTC" = "xno"],
3968
AC_MSG_ERROR([rustc is required. Installation instructions available at https://www.rust-lang.org/tools/install])
3969
)
@@ -3975,6 +3975,10 @@ AS_CASE(["${ZJIT_SUPPORT}"],
3975
rb_cargo_features="$rb_cargo_features,disasm"
3976
JIT_CARGO_SUPPORT=dev
3977
AC_DEFINE(RUBY_DEBUG, 1)
3978
+ ],
3979
+ [dev_nodebug], [
3980
+ rb_cargo_features="$rb_cargo_features,disasm"
3981
+ JIT_CARGO_SUPPORT=dev_nodebug
3982
])
3983
3984
ZJIT_LIBS="target/release/libzjit.a"
0 commit comments