"-XX:PermSize" and "-XX:MaxPermSize" have been deprecated (and ignored) in Java 8, however intentionally raise a VM generation exception resulting in failure for the games to start when using Java 9.
These settings have been replaced by the following, which should be used in place of these older flags.
-XX:MaxPermSize=size
Sets the maximum permanent generation space size (in bytes). This option was deprecated in JDK 8, and superseded by the -XX:MaxMetaspaceSize option.
-XX:PermSize=size
Sets the space (in bytes) allocated to the permanent generation that triggers a garbage collection if it is exceeded. This option was deprecated un JDK 8, and superseded by the -XX:MetaspaceSize option.
Question
Squall Leonhart
"-XX:PermSize" and "-XX:MaxPermSize" have been deprecated (and ignored) in Java 8, however intentionally raise a VM generation exception resulting in failure for the games to start when using Java 9.
These settings have been replaced by the following, which should be used in place of these older flags.
0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now