diff options
author | Alan Wu <[email protected]> | 2022-10-19 14:03:07 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-19 14:03:07 -0400 |
commit | 5ca23caa2057fc4760fbefab6087371b11c4bc6c (patch) | |
tree | b0456a0c659205843eb6d49693e7e823fc75f307 /configure.ac | |
parent | bc939d293768acf9a21568ebe738b8fe5981038f (diff) |
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.
Notes
Notes:
Merged-By: maximecb <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
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 |