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
Copy file name to clipboardExpand all lines: docs/reference-manual/native-image/BuildOutput.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -249,6 +249,14 @@ Relevant guide: [Optimize a Native Executable with Profile-Guided Optimizations]
249
249
250
250
For best peak performance, also consider using the [G1 garbage collector](#recommendation-g1gc).
251
251
252
+
#### <a name="recommendation-qbm"></a>`QBM`: Use Quick Build Mode for Faster Builds
253
+
254
+
Consider using the quick build mode (`-Ob`) to speed up your builds during development.
255
+
More precisely, this mode reduces the number of optimizations performed by the Graal compiler and thus reduces the overall time of the [compilation stage](#stage-compiling).
256
+
The quick build mode is not only useful fordevelopment, it can also cause the generated executable file to be smallerin size.
257
+
Note, however, that the overall peak throughput of the executable may be lower due to the reduced number of optimizations.
0 commit comments