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
OpenJDK's configure has a link-time-opt feature (--with-jvm-features=link-time-opt) that will engage LTO to hopefully improve performance of produced binaries. Corretto's official binary distributions (produced through its custom Gradle build system) don't enable LTO.
Should it? If not, why?
Describe alternatives you have considered
Leaving things the way they are.
The text was updated successfully, but these errors were encountered:
Do you have performance data about LTO? for long-haul java services, most of time is in JIT-generated code. I am not sure how much we would gain from LTO.
Is your feature request related to a problem?
Performance
Describe a solution you would like
OpenJDK's
configure
has alink-time-opt
feature (--with-jvm-features=link-time-opt
) that will engage LTO to hopefully improve performance of produced binaries. Corretto's official binary distributions (produced through its custom Gradle build system) don't enable LTO.Should it? If not, why?
Describe alternatives you have considered
Leaving things the way they are.
The text was updated successfully, but these errors were encountered: