From 9627aab82524e71b702479b4fa5e24b36cced398 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 6 Nov 2022 15:59:32 +0900 Subject: `--disable-jit-support` should disable YJIT successfully Even if `rustc` is available, it should not be an error unless `--enable-yjit` is explicitly given. --- configure.ac | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index bb83865010..8c176db836 100644 --- a/configure.ac +++ b/configure.ac @@ -3754,15 +3754,19 @@ AC_ARG_ENABLE(yjit, AS_HELP_STRING([--enable-yjit], [enable experimental in-process JIT compiler that requires Rust build tools [default=no]]), [YJIT_SUPPORT=$enableval], - [ - AS_IF([test x"$RUSTC" != "xno"], + [AS_CASE(["$enable_jit_support:$YJIT_TARGET_OK:$RUSTC"], + [no:*|yes:no:*|yes:yes:no], [ + YJIT_SUPPORT=no + ], + [yes:yes:*], [ AS_IF([ echo "fn main() { let x = 1; format!(\"{x}\"); }" | $RUSTC - --emit asm=/dev/null ], - [YJIT_SUPPORT="$YJIT_TARGET_OK"], + [YJIT_SUPPORT=yes], [YJIT_SUPPORT=no] - ), + ) + ], [ [YJIT_SUPPORT=no] - ) - ] + ] + )] ) CARGO= -- cgit v1.2.1