We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-XX:+UseZGC
Unfortently, OpenJDK does'n support ZGC on BSD system, an attempt to enable it on cofigure fails as:
checking if platform is supported by ZGC... no, bsd-x86_64 checking if JVM feature 'zgc' is available... no
See: https://github.com/openjdk/jdk/blob/027607968b3d55b498e9f2d7a4023b8ae2d47b5b/make/autoconf/jvm-features.m4#L318-L327
This mean that attempt to use bloop on any bsd system fails as:
bloop
~ $ scala --power bloop output Error occurred during initialization of VM Option -XX:+UseZGC not supported ~ $
as temporarry workaround a user may do something like this:
env BLOOP_JAVA_OPTS="-XX:+UseParallelGC" scala --power bloop output
but, I think, that default hardcoded option should be adjusted.
And yes, ShenandoahGC is available on BSD system if you think that low latency GC is requried here.
The text was updated successfully, but these errors were encountered:
Thanks for reporting! It should be easy to check the current platform and change the defaults at
bloop/bloop-rifle/src/main/scala/bloop/rifle/BloopRifleConfig.scala
Line 75 in 7bac89a
I might not have time to fix it soon though.
Sorry, something went wrong.
No branches or pull requests
Unfortently, OpenJDK does'n support ZGC on BSD system, an attempt to enable it on cofigure fails as:
See: https://github.com/openjdk/jdk/blob/027607968b3d55b498e9f2d7a4023b8ae2d47b5b/make/autoconf/jvm-features.m4#L318-L327
This mean that attempt to use
bloop
on any bsd system fails as:as temporarry workaround a user may do something like this:
but, I think, that default hardcoded option should be adjusted.
And yes, ShenandoahGC is available on BSD system if you think that low latency GC is requried here.
The text was updated successfully, but these errors were encountered: