The JVM errors are due to the default flags provided by the launcher.
To fix the errors, set this for your JVM arguments in the profile:
-Xmx3G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
This is the new (2.0) launcher flags, and work fine from my experience. You can change the -Xmx3G to whatever RAM you would like to allocate.
Oh okay, that makes sense. Thank you for the information!
The JVM errors are due to the default flags provided by the launcher.
To fix the errors, set this for your JVM arguments in the profile:
-Xmx3G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
This is the new (2.0) launcher flags, and work fine from my experience. You can change the -Xmx3G to whatever RAM you would like to allocate.