Eclipse EXCEPTION_ACCESS_VIOLATION crash

后端 未结 2 1401
生来不讨喜
生来不讨喜 2020-12-03 15:22

Today at work my eclipse started to crash repeatedly. It is enough to open it and start editing files to have a crash after few minutes. I reinstalled everything: Eclipse, W

相关标签:
2条回答
  • 2020-12-03 16:11

    This is a known JVM bug in C2 compiler: JDK-8154831.

    Try adding the following JVM argument:
    -XX:CompileCommand=exclude,org.eclipse.jdt.internal.compiler.parser.TypeConverter::*

    0 讨论(0)
  • 2020-12-03 16:16

    This is an Java issue - https://bugs.openjdk.java.net/browse/JDK-8154831 it has been fixed in 9 and backported to 8u112. Kindly upgrade your Java to 8u112 (http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html ) Excluding method from compilation may not be the good solution -XX:CompileCommand=exclude,org.eclipse.jdt.internal.compiler.parser.TypeConverter::*

    0 讨论(0)
提交回复
热议问题