Eclipse crashes on 64-bit Linux
Monday, 7. July 2008, 14:45:58
It seems that lots of people are experiencing their Eclipse IDE crashing more or less randomly on thei 64-bit Linux systems.
However, it seems that adding this:
To your eclipse.ini fixes the issue, for some reason.
EDIT:
After installing some plugins, my Eclipse started crashing again. That's the bad part. The good part is that you can see in the generated hs_err_* file exactly which method the JIT compiler was groking when HotSpot crashed. This lead me to add another line to my eclipse.ini:
And that seems to have solved the crashes... again.
However, it seems that adding this:
-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith
To your eclipse.ini fixes the issue, for some reason.
EDIT:
After installing some plugins, my Eclipse started crashing again. That's the bad part. The good part is that you can see in the generated hs_err_* file exactly which method the JIT compiler was groking when HotSpot crashed. This lead me to add another line to my eclipse.ini:
-XX:CompileCommand=exclude,org/eclipse/jdt/internal/compiler/lookup/ParameterizedMethodBinding,<init>
And that seems to have solved the crashes... again.