diff --git a/README.md b/README.md index a68e81a..1331071 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,9 @@ Be sure to have the GraalVM `native-image` utility in your path, or set its loca ./hello ``` +## Native Image Options + +The options documentation can be found at: + +* https://www.graalvm.org/22.0/reference-manual/native-image/Options/ + diff --git a/src/bld/java/com/example/GraalNativeBuild.java b/src/bld/java/com/example/GraalNativeBuild.java index 8971805..67a4489 100644 --- a/src/bld/java/com/example/GraalNativeBuild.java +++ b/src/bld/java/com/example/GraalNativeBuild.java @@ -41,6 +41,8 @@ public class GraalNativeBuild extends Project { new ExecOperation() .fromProject(this) .timeout(120) + // The native image options documentation can be found at: + // https://www.graalvm.org/22.0/reference-manual/native-image/Options/ .command("native-image", // use its absolute path if not found "-jar", Paths.get(buildDistDirectory().getAbsolutePath(), jarFileName()).toString(),