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
Consider adding build targets for GraalVM Enterprise PGO
This can be accomplished using cmd arguments: mvn package -DbuildArgs="--pgo-instrument" -Pnative-image
for generating the profile generation build. Followed by mvn clean package -DbuildArgs="--pgo=./default.iprof" -Pnative-image
For example, maybe add targets like: -Pnative-image-pgo-instrument -Pnative-image-pgo
Might also consider updating the .gitignore to avoid inadvertent check-in of the resulting iprof files.
The text was updated successfully, but these errors were encountered:
Consider adding build targets for GraalVM Enterprise PGO
This can be accomplished using cmd arguments:
mvn package -DbuildArgs="--pgo-instrument" -Pnative-image
for generating the profile generation build. Followed by
mvn clean package -DbuildArgs="--pgo=./default.iprof" -Pnative-image
For example, maybe add targets like:
-Pnative-image-pgo-instrument
-Pnative-image-pgo
Might also consider updating the .gitignore to avoid inadvertent check-in of the resulting iprof files.
The text was updated successfully, but these errors were encountered: