diff options
author | Takashi Kokubun <[email protected]> | 2025-02-06 10:27:39 -0500 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2025-04-18 21:52:55 +0900 |
commit | d993307d4cf2eeac3c261d4fa4fa308ea3740830 (patch) | |
tree | 680fc1ad1c74abe1952b10490ac41793cdb86196 /internal/cmdlineopt.h | |
parent | 43234138d6456ea2b9b65d2fc2c69a4fb769cef6 (diff) |
Add --zjit option
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13131
Diffstat (limited to 'internal/cmdlineopt.h')
-rw-r--r-- | internal/cmdlineopt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cmdlineopt.h b/internal/cmdlineopt.h index c12994733e..e156ba10e3 100644 --- a/internal/cmdlineopt.h +++ b/internal/cmdlineopt.h @@ -39,6 +39,7 @@ typedef struct ruby_cmdline_options { #if USE_YJIT unsigned int yjit: 1; #endif + unsigned int zjit: 1; } ruby_cmdline_options_t; struct ruby_opt_message { |