Why did my Eclipse Indigo crash on Ubuntu 13.04 with Oracle JDK 64bit?

I installed jdk and eclipse on Ubuntu 13.04. It remains open until I create a project and type some basic one, but then suddenly for a minute, when I press somewhere like javadoc or Ctrl + Space, it immediately crashes with the following message. I had this problem with Juno and Ubuntu 12.04, but when I upgraded from Juno to Indigo everything was fine. But now, after using Indigo and Ubuntu 13.04, everything went wrong. Even Juno will not work with Ubuntu 13.04, I need help. I need to get an eclipse to work. I am just ready to install / uninstall everything to start Eclipse again.

[psycho:~] $ /opt/eclipse/eclipse (Eclipse:19297): Gtk-WARNING **: Unable to locate theme engine in module_path: "mist", (Eclipse:19297): Gtk-WARNING **: Unable to locate theme engine in module_path: "mist", # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007fb29dce2009, pid=19297, tid=140405947455232 # # JRE version: 7.0_10-b18 # Java VM: Java HotSpot(TM) 64-Bit Server VM (23.6-b04 mixed mode linux-amd64 compressed oops) # Problematic frame: # C [libsoup-2.4.so.1+0x6e009] soup_session_feature_detach+0x19 # # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again # # An error report file with more information is saved as: # /home/psycho/hs_err_pid19297.log # # If you would like to submit a bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # 

My Logs: Logs Created by eclipse

+61
java eclipse crash
May 5 '13 at 11:23
source share
6 answers

I had the same error when running ADT on Ubuntu 13.04 with Gnome Shell 3.8.
I found the corresponding error report: https://bugs.eclipse.org/bugs/show_bug.cgi?id=404776
And the workaround published in the error report: Add

 -Dorg.eclipse.swt.browser.DefaultType=mozilla 

to your eclipse.ini
It worked for me, I hope it solves the problem for you too.

+146
May 05 '13 at 12:57
source share

I am running eclipse luna on Ubuntu 12.04 and am facing the same problem. I resolved it by adding the following line to the eclipse.ini file as other options did not work for me.

 -Dorg.jboss.tools.vpe.loadxulrunner=false 

Hope this helps!

+6
Feb 12 '14 at 10:00
source share

This is a problem with Ubuntu / GTK themes. According to this page on Ubuntu Technical, this is caused by the missing GTK theme engine package. The fix is ​​to define a specific GTK theme engine package for the fog theme ... or just install the theme engines by installing the gtk-engines package ( source ).

+3
May 05, '13 at 11:36
source share

Please note that https://bugs.eclipse.org/bugs/show_bug.cgi?id=404776 has been fixed, so the best way to avoid this crash is to use Eclipse 4.3.2 or later if you can.

+2
May 6 '14 at 1:47
source share

For me, there was a problem with this error , and the workaround was to change the GTK theme (system settings> application appearance> GTK).

+1
Oct. 17 '14 at 14:16
source share

In my case, the problem was solved by adding the following to the end of eclipse.ini

 org.eclipse.swt.browser.DefaultType=mozilla 
0
Apr 18 '15 at 11:47
source share



All Articles