From 5ca23caa2057fc4760fbefab6087371b11c4bc6c Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Wed, 19 Oct 2022 14:03:07 -0400 Subject: YJIT: fold the "asm_comments" feature into "disasm" (#6591) Previously, enabling only "disasm" didn't actually build. Since these two features are closely related and we don't really use one without the other, let's simplify and merge the two features together. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 93141dcd9e..0e22aabbe5 100644 --- a/configure.ac +++ b/configure.ac @@ -3754,12 +3754,12 @@ AS_CASE(["${YJIT_SUPPORT}"], ], [dev], [ rb_rust_target_subdir=debug - CARGO_BUILD_ARGS='--features stats,disasm,asm_comments' + CARGO_BUILD_ARGS='--features stats,disasm' AC_DEFINE(RUBY_DEBUG, 1) ], [dev_nodebug], [ rb_rust_target_subdir=dev_nodebug - CARGO_BUILD_ARGS='--profile dev_nodebug --features stats,disasm,asm_comments' + CARGO_BUILD_ARGS='--profile dev_nodebug --features stats,disasm' ], [stats], [ rb_rust_target_subdir=stats -- cgit v1.2.3