Skip to content

Instantly share code, notes, and snippets.

@fishchev
Last active May 6, 2021 13:14
Show Gist options
  • Save fishchev/49e77a4ac22232ce3d853d036cb3d145 to your computer and use it in GitHub Desktop.
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
# 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