Skip to content

Create native image using GraalVM

Even Solbraa edited this page Jan 9, 2022 · 2 revisions

A native executable or a native shared library can be created using the GraalVM. See: https://www.graalvm.org/reference-manual/native-image/

Create a native executable

Run command:

native-image -jar jarfile neqsim-X.X.X.jar

Create a native shared library

Run command:

native-image -jar jarfile neqsim-X.X.X.jar --shared

Clone this wiki locally