Skip to content

Commit

Permalink
Windows build instructions documentation. (#6956)
Browse files Browse the repository at this point in the history
Windows build instructions.
  • Loading branch information
ioquatix committed Jan 21, 2023
1 parent 5cdf312 commit 3e7fdf2
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions doc/windows.md
@@ -0,0 +1,42 @@
# Windows

## Building Ruby

The easiest build environment is just a standard [RubyInstaller-Devkit installation](https://rubyinstaller.org/) and [git-for-windows](https://gitforwindows.org/). You might like to use [VSCode](https://code.visualstudio.com/) as an editor.

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 %MINGW_PACKAGE_PREFIX%-readline
cd c:\
mkdir work
cd work
git clone https://github.com/ruby/ruby
cd c:\work\ruby
sh autogen.sh
sh configure -C --disable-install-doc
make
```

or in MSYS2 `bash` like:

```
ridk enable ucrt64
bash
pacman -S --needed bison $MINGW_PACKAGE_PREFIX-openssl $MINGW_PACKAGE_PREFIX-libyaml $MINGW_PACKAGE_PREFIX-readline
cd /c/
mkdir work
cd work
git clone https://github.com/ruby/ruby
cd ruby
./autogen.sh
./configure -C --disable-install-doc
make
```

0 comments on commit 3e7fdf2

Please sign in to comment.