summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-09-19 15:13:53 +0900
committerGitHub <noreply@github.com>2022-09-19 15:13:53 +0900
commit7cab7e5fde150bdef955ba4182d26f84e1c5d122 (patch)
tree72ea48127018093f76cf2fb96bcfec69b3928646 /doc
parente75d96368577276cbebadb56a0fb286f66afdf3f (diff)
Stop recommending duplicated options [ci skip] (#6400)
Notes
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/yjit/yjit.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md
index 1eeb75824a..c2521eba42 100644
--- a/doc/yjit/yjit.md
+++ b/doc/yjit/yjit.md
@@ -79,7 +79,7 @@ The YJIT `ruby` binary can be built with either GCC or Clang. It can be built ei
```
# Configure in release mode for maximum performance, build and install
./autogen.sh
-./configure --enable-yjit --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc --disable--install-rdoc
+./configure --enable-yjit --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc
make -j install
```
@@ -88,7 +88,7 @@ or
```
# Configure in dev (debug) mode for development, build and install
./autogen.sh
-./configure --enable-yjit=dev --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc --disable--install-rdoc
+./configure --enable-yjit=dev --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc
make -j install
```
@@ -100,7 +100,7 @@ brew install openssl readline libyaml
# Configure in dev (debug) mode for development, build and install
./autogen.sh
-./configure --enable-yjit=dev --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc --disable--install-rdoc --with-opt-dir="$(brew --prefix openssl):$(brew --prefix readline):$(brew --prefix libyaml)"
+./configure --enable-yjit=dev --prefix=$HOME/.rubies/ruby-yjit --disable-install-doc --with-opt-dir="$(brew --prefix openssl):$(brew --prefix readline):$(brew --prefix libyaml)"
make -j install
```