Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`--jit` is same to `--yjit` since MRI 3.2 ``` $ RBENV_VERSION=3.0.5 ruby --help | grep " --jit " --jit enable JIT with default options (experimental) $ RBENV_VERSION=3.1.4 ruby --help | grep " --jit " --jit enable JIT for the platform, same as --mjit (experimental) $ RBENV_VERSION=3.2.2 ruby --help | grep " --jit " --jit enable JIT for the platform, same as --yjit $ RBENV_VERSION=3.3.0 ruby --help | grep " --jit " --jit enable JIT for the platform, same as --yjit ``` Therefore, since Ruby 3.2, I don't test both `--jit` and `--yjit`.
- Loading branch information