You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #1376 we held off on Windows support for FFI due to issues with packaging libffi on Windows detailed in #1090 (comment). But now that we have static linking of libffi on all platforms with libffi-0.2, Windows support should just be a matter of using the appropriate functions from the Win32 package to dynamically load shared libraries. We also need to figure out how to make the FFI tests work on Windows as well.
The text was updated successfully, but these errors were encountered:
This patch:
* Adds the appropriate conditional logic to use the `Win32` library to
dynamically load shared libraries on Windows.
* Tweaks some FFI-related test cases to make them work portably on Windows. I
have left comments describing each of the non-obvious tweaks that I had to
make.
* Updates the reference manual accordingly.
Fixes#1394.
This patch:
* Adds the appropriate conditional logic to use the `Win32` library to
dynamically load shared libraries on Windows.
* Tweaks some FFI-related test cases to make them work portably on Windows. I
have left comments describing each of the non-obvious tweaks that I had to
make.
* Updates the reference manual accordingly.
Fixes#1394.
This patch:
* Adds the appropriate conditional logic to use the `Win32` library to
dynamically load shared libraries on Windows.
* Tweaks some FFI-related test cases to make them work portably on Windows. I
have left comments describing each of the non-obvious tweaks that I had to
make.
* Updates the reference manual accordingly.
Fixes#1394.
In #1376 we held off on Windows support for FFI due to issues with packaging
libffi
on Windows detailed in #1090 (comment). But now that we have static linking oflibffi
on all platforms withlibffi-0.2
, Windows support should just be a matter of using the appropriate functions from theWin32
package to dynamically load shared libraries. We also need to figure out how to make the FFI tests work on Windows as well.The text was updated successfully, but these errors were encountered: