Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quickstart guides for Native Image Build Tools Maven/Gradle plugins. #381

Merged
merged 11 commits into from
Jan 9, 2023
10 changes: 5 additions & 5 deletions docs/src/docs/asciidoc/graalvm-setup.adoc
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
= Setting up GraalVM with native-image support
= Setting up GraalVM with Native Image Support

image:https://www.graalvm.org/resources/img/logo-colored.svg[GraalVM]

Working GraalVM distribution with `native-image` installable and `GRAALVM_HOME` and/or `JAVA_HOME` environment variables set, is prequisite for successful *native-image* building.
As a prerequisite for building with GraalVM Native Image, a GraalVM JDK is required and the `GRAALVM_HOME` and/or `JAVA_HOME` environment variables need to be set.

Following are the steps needed to obtain and setup GraalVM environment.
Following are the steps needed to obtain and setup a GraalVM environment.

NOTE: This is just a quick overview, and that user should consult https://www.graalvm.org/docs/getting-started/[Getting Started section] in official documentation before proceeding.
NOTE: This is just a quick overview, and users can consult the https://www.graalvm.org/docs/getting-started/[GraalVM Getting Started section] before proceeding.

== 1. Obtaining distribution

Expand Down Expand Up @@ -36,7 +36,7 @@ setx /M GRAALVM_HOME "C:\path\to\graalvm"

NOTE: Preferably user would also set `JAVA_HOME` variable in the same manner (by replacing `GRAALVM_HOME` with `JAVA_HOME` in previous commands).

== 3. `native-image` tool instalation
== 3. `native-image` tool installation

.Linux / macOS
```bash
Expand Down
Loading