Eclipse 在自动建议时崩溃

问题描述 投票:0回答:1

我正在使用 eclipse 3.7 (indigo),每次我尝试按

Ctrl+Space
获取自动建议时,它都会崩溃。我什至尝试更改我的 eclipse 和 jdk 版本,但仍然遇到相同的错误。

我在 Ubuntu 13.04 上运行,当我尝试从终端运行 eclipse 时,出现以下错误 -

# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f4d744f2009, pid=21632, tid=139972060423936
#
# JRE version: 7.0_21-b02
# Java VM: OpenJDK 64-Bit Server VM (23.7-b01 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/swapnilg/hs_err_pid21632.log
#
# If you would like to submit a bug report, please include
# instructions on how to reproduce the bug and visit:
#   https://bugs.launchpad.net/ubuntu/+source/openjdk-7/
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

这里是我得到的日志文件。请帮助我。

java eclipse ubuntu
1个回答
0
投票

您尝试过哪些 Java 版本? OpenJDK 和?您考虑过使用 Oracle 的吗?

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
sudo update-java-alternatives -s java-7-oracle
java -version

您真的需要 Indigo (3.7) 吗?我们现在有朱诺 (4.2)...哎呀开普勒 (4.3) 刚刚出来。

© www.soinside.com 2019 - 2024. All rights reserved.