File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed
Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,16 @@ ridk enable ucrt64
2121
2222pacman -S --needed %MINGW_PACKAGE_PREFIX%-openssl %MINGW_PACKAGE_PREFIX%-libyaml %MINGW_PACKAGE_PREFIX%-libffi
2323
24- cd c:\
25- mkdir work
26- cd work
27- git clone https://github.com/ruby/ruby
28-
29- cd c:\work\ruby
30- sh autogen.sh
31- sh configure -C --disable-install-doc
24+ mkdir c:\work\ruby
25+ cd /d c:\work\ruby
26+
27+ git clone https://github.com/ruby/ruby src
28+
29+ sh ./src/autogen.sh
30+
31+ mkdir build
32+ cd build
33+ sh ../src/configure -C --disable-install-doc
3234make
3335```
3436
4042
4143pacman -S --needed $MINGW_PACKAGE_PREFIX -openssl $MINGW_PACKAGE_PREFIX -libyaml $MINGW_PACKAGE_PREFIX -libffi
4244
43- cd /c/
44- mkdir work
45- cd work
46- git clone https://github.com/ruby/ruby
47- cd ruby
45+ mkdir /c/work/ruby
46+ cd /c/work/ruby
47+
48+ git clone https://github.com/ruby/ruby src
4849
49- ./autogen.sh
50- ./configure -C --disable-install-doc
50+ ./src/autogen.sh
51+ cd build
52+ ../src/configure -C --disable-install-doc
5153make
5254```
5355
You can’t perform that action at this time.
0 commit comments