mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Stop recommending duplicated options [ci skip] (#6400)
This commit is contained in:
parent
e75d963685
commit
7cab7e5fde
Notes:
git
2022-09-19 15:14:14 +09:00
Merged-By: k0kubun <takashikkbn@gmail.com>
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue