GraalVM: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 76: Line 76:
* [https://www.batey.info/graalvm-docker-small-images.html Tiny docker images for Java with GraalVM]
* [https://www.batey.info/graalvm-docker-small-images.html Tiny docker images for Java with GraalVM]
* [https://codetinkering.com/install-graalvm-native-image-mac/ Install GraalVM & Native-Image on a Mac]
* [https://codetinkering.com/install-graalvm-native-image-mac/ Install GraalVM & Native-Image on a Mac]
* [https://www.graalvm.org/22.0/reference-manual/js/ GraalVM JavaScript Implementation]
* [https://www.graalvm.org/22.0/reference-manual/js/ GraalVM: JavaScript Implementation]
* [https://www.graalvm.org/22.0/reference-manual/js/JavaScriptCompatibility/ GraalVM: JavaScript Compatibility]
* [https://zeringue.io/post/graalvm-gradle-docker/ Build Slim Java Native Container]
* [https://zeringue.io/post/graalvm-gradle-docker/ Build Slim Java Native Container]
* [https://www.graalvm.org/docs/getting-started/macos/ GraalVM on macOS Platforms]
* [https://www.graalvm.org/docs/getting-started/macos/ GraalVM on macOS Platforms]

Revision as of 02:44, 3 March 2022

export GRAALVM_HOME=/d/opt/cli/mandrel-java11-21.2.0.0-Final
export PATH=$GRAALVM_HOME/bin:$PATH

OR

export GRAALVM_HOME=/d/opt/cli/graalvm-ce-java11-21.2.0
export PATH=$GRAALVM_HOME/bin:$PATH
gu install native-image
set GRAALVM_HOME=D:\opt\cli\mandrel-java11-21.2.0.0-Final
set PATH=%GRAALVM_HOME%/bin;%PATH%

OR

set GRAALVM_HOME=D:\opt\cli\graalvm-ce-java11-21.2.0
set PATH=%GRAALVM_HOME%/bin;%PATH%
gu install native-image
# for oracle linux, debian, redhat
sudo yum install gcc glibc-devel zlib-devel
sudo apt install build-essential libz-dev zlib1g-dev
sudo dnf install gcc glibc-devel zlib-devel libstdc++-static

# to use xcode in macos
xcode-select --install

Build a Shared Library

To build a native image as a shared library of a Java class file, pass --shared to the native image builder. The created shared library will have the main method of the given Java class as its entrypoint method.

native-image class [libraryname] --shared

To build a native image as a shared library of a JAR file, use:

native-image -jar jarfile [libraryname] --shared

Note: if you build a shared library where you do not specify a main class, you must append the -H:Name= flag to specify the library name: -H:Name=libraryname.

References


Getting Started: