diff options
author | Yuichiro Kaneko <[email protected]> | 2023-05-12 18:25:10 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2023-05-12 18:25:10 +0900 |
commit | a1b01e7701f9fc370f8dff777aad6d39a2c5a3e3 (patch) | |
tree | 69bb0c08c139f1c7c5abe9422649f11581f85529 /doc/windows.md | |
parent | d314fe42f987fcfaad67f102ec418ee4ca32ee99 (diff) |
Use Lrama LALR parser generator instead of Bisonv3_3_0_preview1
https://bugs.ruby-lang.org/issues/19637
Co-authored-by: Nobuyoshi Nakada <[email protected]>
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7798
Merged-By: yui-knk <[email protected]>
Diffstat (limited to 'doc/windows.md')
-rw-r--r-- | doc/windows.md | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/windows.md b/doc/windows.md index 8e465e5eaf..8159b25861 100644 --- a/doc/windows.md +++ b/doc/windows.md @@ -19,7 +19,7 @@ Ruby core development can be done either in Windows `cmd` like: ``` ridk enable ucrt64 -pacman -S --needed bison %MINGW_PACKAGE_PREFIX%-openssl %MINGW_PACKAGE_PREFIX%-libyaml +pacman -S --needed %MINGW_PACKAGE_PREFIX%-openssl %MINGW_PACKAGE_PREFIX%-libyaml cd c:\ mkdir work @@ -38,7 +38,7 @@ or in MSYS2 `bash` like: ridk enable ucrt64 bash -pacman -S --needed bison $MINGW_PACKAGE_PREFIX-openssl $MINGW_PACKAGE_PREFIX-libyaml +pacman -S --needed $MINGW_PACKAGE_PREFIX-openssl $MINGW_PACKAGE_PREFIX-libyaml cd /c/ mkdir work @@ -78,7 +78,6 @@ make * dumpbin 4. If you want to build from GIT source, following commands are required. - * bison * patch * sed * ruby 2.0 or later @@ -86,7 +85,7 @@ make You can use [scoop](https://scoop.sh/) to install them like: ``` - scoop install git ruby winflexbison sed patch + scoop install git ruby sed patch ``` 5. You need to install required libraries using [vcpkg](https://vcpkg.io/) like: |