12

Eclipse を使用して Web アプリケーションを開発していますが、Eclipse 内からサーバー上でアプリケーションを実行しようとしたときに問題が発生しました。

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f41e4e610b0, pid=3463, tid=139924549404416
#
# JRE version: 7.0_09-b05
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.5-b02 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  [libwebkitgtk-1.0.so.0+0x11670b0]  void WTF::freeOwnedGPtr<_GdkEvent>(_GdkEvent*)+0x15e00
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# 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.
#

私はそれをグーグルで検索し、「最小の回避策は -XX:LoopUnrollLimit=1 を引数として追加することです」という提案する可能な解決策を見つけました。問題は、この引数を追加する場所と追加する方法がわからないことです。誰でもそれについて私を助けることができますか?

ありがとう。

編集: jdk を 1.7_9 から 1.7_40 に更新しましたが、問題は解決しません。

4

4 に答える 4

11

Linux mint 16 では、私にとっての解決策は、Eclipse テーマを GTK から Classic に変更し、eclipse.ini に次のように記述することでした。

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

于 2014-01-05T10:38:11.303 に答える
5

この解決策がすべての人に当てはまるかどうかはわかりませんが、日食をインディゴからケプラーに更新することでこれを解決できました。

于 2013-10-17T06:18:13.547 に答える
2

このエラー ログは、Eclipse Marketplace を開こうとしたときに受け取ったものと似ています。その後、Eclipseは単に閉じられました。私の OS は Linux Mint Derbian で、Eclipse Luna 4.4.1 を使用しています。Derbian のフォーラムでこのヒントを見つけたところ、うまくいきました。 Re: Eclipse Luna が XFCE でクラッシュした

eclipse/eclipse.in に次の行を追加します。

--launcher.GTK_version
2

それがあなたにとってもうまくいくことを願っています。

于 2014-11-06T14:56:30.590 に答える
1

Erick Alves Answer は私にとってはうまくいきます。コードを追加します

--launcher.GTK_version 2

次に、私のeclipse.iniの下で動作します。

--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20140603-1326
-product
org.eclipse.epp.package.cpp.product
--launcher.defaultAction
openFile
-showsplash
--launcher.GTK_version
2
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
--launcher.appendVmargs
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
-vmargs
-Dosgi.requiredJavaVersion=1.7
-XX:MaxPermSize=256m
-Xms40m
-Xmx512m
于 2014-12-04T20:27:24.367 に答える