1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[MSWin] Link all vcpkg DLLs except for readline

This commit is contained in:
Nobuyoshi Nakada 2022-02-07 01:19:36 +09:00
parent 65ccae5b2a
commit 8fe2ce83ef
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -106,7 +106,9 @@ jobs:
del *.env
- name: link libraries
run: |
for %%I in (libffi yaml) do mklink %%I.dll C:\vcpkg\installed\x64-windows\bin\%%I.dll
for %%I in (C:\vcpkg\installed\x64-windows\bin\*.dll) do (
if not %%~nI == readline mklink %%~nxI %%I
)
- name: Configure
run: >-
../src/win32/configure.bat --disable-install-doc