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
When trying to build the project from the doc section "Build it Yourself", it crashes when executing:
./sbt clean stage
The errors are related to VM options that are no longer supported in Java 11 (for instance UseConcMarkSweepGC, UseParNewGC)
Steps to Reproduce
Try to build from source, with java 11, with the command ./sbt clean stage
Possible Solutions
Please adjust the VM options to java 11
The text was updated successfully, but these errors were encountered:
$ ./sbt clean stage
OpenJDK 64-Bit Server VM warning: Option AggressiveOpts was deprecated in version 11.0 and will likely be removed in a future release.
Unrecognized VM option 'UseParNewGC'
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
After trying removing the VM option UseParNewGC, the error persists this way:
OpenJDK 64-Bit Server VM warning: Option AggressiveOpts was deprecated in version 11.0 and will likely be removed in a future release.
OpenJDK 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.
Error occurred during initialization of VM
Multiple garbage collectors selected
So the VM options need reviewing and being adjusted to java 11
Request Type
Bug
Work Environment
Problem Description
When trying to build the project from the doc section "Build it Yourself", it crashes when executing:
./sbt clean stage
The errors are related to VM options that are no longer supported in Java 11 (for instance UseConcMarkSweepGC, UseParNewGC)
Steps to Reproduce
Try to build from source, with java 11, with the command ./sbt clean stage
Possible Solutions
Please adjust the VM options to java 11
The text was updated successfully, but these errors were encountered: