summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Kanis <[email protected]>2023-10-27 18:47:59 +0200
committerHiroshi SHIBATA <[email protected]>2023-10-28 10:44:16 +0900
commit7e6204dd10857a6f1fb72119082ff7797686c089 (patch)
treed26b0710d42043af09bd9031d9458f7f7e67658f
parent2714d7507aa053d1804095f7ce3b869c56f64337 (diff)
Windows: Add libffi as a build dependency
Otherwise the fiddle extension isn't build.
-rw-r--r--doc/windows.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/windows.md b/doc/windows.md
index 8159b25861..4df732bd84 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 %MINGW_PACKAGE_PREFIX%-openssl %MINGW_PACKAGE_PREFIX%-libyaml
+pacman -S --needed %MINGW_PACKAGE_PREFIX%-openssl %MINGW_PACKAGE_PREFIX%-libyaml %MINGW_PACKAGE_PREFIX%-libffi
cd c:\
mkdir work
@@ -38,7 +38,7 @@ or in MSYS2 `bash` like:
ridk enable ucrt64
bash
-pacman -S --needed $MINGW_PACKAGE_PREFIX-openssl $MINGW_PACKAGE_PREFIX-libyaml
+pacman -S --needed $MINGW_PACKAGE_PREFIX-openssl $MINGW_PACKAGE_PREFIX-libyaml $MINGW_PACKAGE_PREFIX-libffi
cd /c/
mkdir work