You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -116,6 +116,14 @@ On Oracle GraalVM, the line also shows information about [Profile-Guided Optimiz
116
116
#### <aname="glossary-ccompiler"></a>C Compiler
117
117
The C compiler executable, vendor, target architecture, and version info used by the Native Image build process.
118
118
119
+
#### <aname="glossary-builder-assertions"></a>Assertions in the Builder
120
+
This shows whether Java assertions and system assertions are enabled for the Native Image Builder process.
121
+
Enabling them can help the GraalVM team identify and debug problems in the Builder.
122
+
123
+
#### <aname="glossary-user-specific-features"></a>User-Specific Features
124
+
All [`Features`](https://www.graalvm.org/sdk/javadoc/org/graalvm/nativeimage/hosted/Feature.html) that are provided or explicitly enabled by the user, or implicitly registered on the user's behalf (for example, by a framework).
125
+
Internal features used by GraalVM Native Image are not included in this list.
126
+
119
127
#### <aname="glossary-gc"></a>Garbage Collector
120
128
The garbage collector used within the generated executable:
121
129
- The *Serial GC* is the default GC and optimized for low memory footprint and small Java heap sizes.
@@ -130,9 +138,9 @@ Use the `-Xmx` option when invoking your native executable (for example `./myapp
130
138
This can also improve latency in some cases.
131
139
Use the `-R:MaxHeapSize` option when building with Native Image to preconfigure the maximum heap size.
132
140
133
-
#### <aname="glossary-user-specific-features"></a>User-Specific Features
134
-
All [`Features`](https://www.graalvm.org/sdk/javadoc/org/graalvm/nativeimage/hosted/Feature.html) that are either provided or specifically enabled by the user, or implicitly registered for the user, for example, by a framework.
135
-
GraalVM Native Image deploys a number of internal features, which are excluded from this list.
141
+
#### <aname="glossary-image-assertions"></a>Assertions in the Generated Image
142
+
This shows whether Java assertions and system assertions are enabled in the generated image.
143
+
Enabling them can help identifying and debugging problems in the Java code built into the image.
0 commit comments