Jump to content

Question

Posted (edited)

"-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.

Edited by Squall Leonhart

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...