summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 23:17:25 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 23:44:01 -0800
commit23ec248e48f696ae986e2b19cd572ece02a5ba55 (patch)
tree3973e15ea1c34d000b40a64bd64e78880f28efec /doc
parent2e875549a934fa04b7939810fa0d8a2762702aaa (diff)
downloadruby-23ec248e48f696ae986e2b19cd572ece02a5ba55.tar.gz
s/mjit/rjit/
Diffstat (limited to 'doc')
-rw-r--r--doc/rjit/rjit.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/rjit/rjit.md b/doc/rjit/rjit.md
index 7f038af88d..1f847f61d5 100644
--- a/doc/rjit/rjit.md
+++ b/doc/rjit/rjit.md
@@ -22,7 +22,7 @@ The RJIT support for the following platforms is no longer maintained.
If you see an "RJIT bindgen" GitHub Actions failure, please commit the `git diff` shown on the failed job.
-For doing the same thing locally, run `make mjit-bindgen` after installing libclang.
+For doing the same thing locally, run `make rjit-bindgen` after installing libclang.
macOS seems to have libclang by default. On Ubuntu, you can install it with `apt install libclang1`.
### Always run make install
@@ -30,10 +30,10 @@ macOS seems to have libclang by default. On Ubuntu, you can install it with `apt
Always run `make install` before running RJIT. It could easily cause a SEGV if you don't.
RJIT looks for the installed header for security reasons.
-### --mjit-debug vs --mjit-debug=-ggdb3
+### --rjit-debug vs --rjit-debug=-ggdb3
-`--mjit-debug=[flags]` allows you to specify arbitrary flags while keeping other compiler flags like `-O3`,
+`--rjit-debug=[flags]` allows you to specify arbitrary flags while keeping other compiler flags like `-O3`,
which is useful for profiling benchmarks.
-`--mjit-debug` alone, on the other hand, disables `-O3` and adds debug flags.
-If you're debugging RJIT, what you need to use is not `--mjit-debug=-ggdb3` but `--mjit-debug`.
+`--rjit-debug` alone, on the other hand, disables `-O3` and adds debug flags.
+If you're debugging RJIT, what you need to use is not `--rjit-debug=-ggdb3` but `--rjit-debug`.