@@ -24,25 +24,25 @@ You will need to follow these prerequisite steps in order to run these samples:
24
24
25
25
**Note:** Authenticating with Application Default Credentials is convenient to use during development, but we recommend [alternate methods of authentication](https://cloud.google.com/docs/authentication/production) during production use.
26
26
27
-
3. Install the GraalVM compiler.
27
+
3. Install the native image compiler.
28
28
29
-
You can follow the [official installation instructions](https://www.graalvm.org/docs/getting-started/#install-graalvm) from the GraalVM website.
29
+
You can follow the [official installation instructions](https://www.graalvm.org/docs/getting-started/#install-graalvm).
30
30
After following the instructions, ensure that you install the Native Image extension installed by running:
31
31
32
32
```
33
33
gu install native-image
34
34
```
35
35
36
-
Once you finish following the instructions, verify that the default version of Java is set to the GraalVM version by running `java -version` in a terminal.
36
+
Once you finish following the instructions, verify that the default version of Java is set to the correct version by running `java -version` in a terminal.
37
37
38
38
You will see something similar to the below output:
39
39
40
40
```
41
41
$ java -version
42
42
43
-
openjdk 11.0.14 2022-01-18
44
-
OpenJDK Runtime Environment GraalVM CE 22.0.0.2 (build 11.0.14+9-jvmci-22.0-b05)
45
-
OpenJDK 64-Bit Server VM GraalVM CE 22.0.0.2 (build 11.0.14+9-jvmci-22.0-b05, mixed mode, sharing)
43
+
openjdk version "17.0.3" 2022-04-19
44
+
OpenJDK Runtime Environment GraalVM CE 22.1.0 (build 17.0.3+7-jvmci-22.1-b06)
45
+
OpenJDK 64-Bit Server VM GraalVM CE 22.1.0 (build 17.0.3+7-jvmci-22.1-b06, mixed mode, sharing)
46
46
47
47
```
48
48
@@ -58,7 +58,7 @@ Navigate to this directory in a new terminal.
58
58
export LOCATION_ID=us-east1
59
59
```
60
60
61
-
2. Compile the application using the Native Image Compiler. This step may take a few minutes.
61
+
2. Compile the application using the native image Compiler. This step may take a few minutes.
0 commit comments