Last active
May 6, 2021 13:14
-
-
Save fishchev/49e77a4ac22232ce3d853d036cb3d145 to your computer and use it in GitHub Desktop.
where to get ikvm 8.1.5717.0 and produce binaries for windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# since ikvm.net site is down there seems to be not a single live mirror of 8.1.5717.0 build, | |
# but it's still up in ubuntu repos: https://packages.ubuntu.com/bionic/ikvm | |
# install on 18.04 (wsl works fine) and use as usual, resulting dlls/executables should work fine on windows | |
sudo apt-get update | |
sudo apt-get install ikvm | |
ikvmc greenfield-apps-1.16.1.jar -main:org.verapdf.apps.GreenfieldCliWrapper | |
# copying IKVM dlls | |
find /usr -name 'IKVM.OpenJDK.Core' | |
cd /usr/lib/mono/gac | |
cp ./IKVM.**/*/*.dll /where/to/put/dlls -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment