diff --git a/docs/src/main/asciidoc/building-native-image-guide.adoc b/docs/src/main/asciidoc/building-native-image-guide.adoc index 2fa4e10268ea2..3307f549d6602 100644 --- a/docs/src/main/asciidoc/building-native-image-guide.adoc +++ b/docs/src/main/asciidoc/building-native-image-guide.adoc @@ -25,6 +25,8 @@ To complete this guide, you need: Using the community edition is enough. Version {graalvm-version} is required. * The `GRAALVM_HOME` environment variable configured appropriately +* The `native-image` tool must be installed; this can be done by running `gu install native-image` from your GraalVM +directory * Apache Maven 3.5.3+ * A working C developer environment (see the note below for details) * A running Docker @@ -49,6 +51,13 @@ What does having a working C developer environment mean? * On macOS, execute `xcode-select --install`. ==== +[NOTE] +==== +Some previous releases of GraalVM included the `native-image` tool by default. This is no longer the +case; it now has to be installed as a second step after GraalVM itself is installed. Use `gu install native-image` +to do so. +==== + == Solution We recommend that you follow the instructions in the next sections and package the application step by step.