From 1004d693b7a3db5db98be59a3d3d468d2ee21ca5 Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Mon, 12 Dec 2022 15:13:46 -0500 Subject: Make it so YJIT is no longer marked as experimental (#6909) Tested on production workloads at Shopify for > 1 year and proven to be quite stable. Enabling YJIT at run-time is still guarded behind the --yjit command-line option for now. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ae560297ad..ce47ab7b16 100644 --- a/configure.ac +++ b/configure.ac @@ -3785,7 +3785,7 @@ AS_IF([test "$cross_compiling" = no], dnl build YJIT in release mode if rustc >= 1.58.0 is present and we are on a supported platform AC_ARG_ENABLE(yjit, AS_HELP_STRING([--enable-yjit], - [enable experimental in-process JIT compiler that requires Rust build tools [default=no]]), + [enable in-process JIT compiler that requires Rust build tools [default=no]]), [YJIT_SUPPORT=$enableval], [AS_CASE(["$enable_jit_support:$YJIT_TARGET_OK:$YJIT_RUSTC_OK"], [yes:yes:yes|:yes:yes], [ -- cgit v1.2.1