Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I installed jdk and eclipse on to Ubuntu 13.04. It stays open till I create a project and type some basic but then suddenly within a minute when I click 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, it was fine. But now after using Indigo and Ubuntu 13.04 it's all messed up. Even Juno won't work with Ubuntu 13.04, I need help. I need to get eclipse working. I just am ready to install/remove anything to get Eclipse working 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 generated by eclipse

like image 483
vikkyhacks Avatar asked May 05 '13 11:05

vikkyhacks


4 Answers

I had the same error running ADT on Ubuntu 13.04 with Gnome Shell 3.8.
I found this relevant bug report: https://bugs.eclipse.org/bugs/show_bug.cgi?id=404776
And a workaround as posted in the bug report: Add

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

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

like image 108
user2055996 Avatar answered Oct 18 '22 20:10

user2055996


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

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

Hope it helps!

like image 6
h-rai Avatar answered Oct 18 '22 19:10

h-rai


It appears to be an Ubuntu / GTK themes problem. According to this page on "Ubuntu Technical", it is caused by a missing GTK "theme engine" package. The fix is to identify the specific GTK theme engine package for the "mist" theme ... or just install theme engines by installing the package "gtk-engines" (source).

like image 3
Stephen C Avatar answered Oct 18 '22 21:10

Stephen C


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

like image 2
Grant Gayed Avatar answered Oct 18 '22 20:10

Grant Gayed