web-dev-qa-db-ja.com

終了時に生成されるEclipseエラーログファイル

Ubuntu 16.04 LTSを実行しています。 Javaファイルを編集したいが、Eclipseを閉じたとき、Eclipse Oxygen(9月)は正常に動作するようです。エラーのあるログファイルが/ home/user /に生成されます

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f3fbd7a8c4c, pid=28399, tid=0x00007f4050387700
#
# JRE version: OpenJDK Runtime Environment (8.0_131-b11) (build 1.8.0_131-8u131-b11-2ubuntu1.16.04.3-b11)
# Java VM: OpenJDK 64-Bit Server VM (25.131-b11 mixed mode linux-AMD64 compressed oops)
# Problematic frame:
# C  [libjavascriptcoregtk-4.0.so.18+0xd45c4c]  WTFCrash+0x1c
#
# 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.Java.com/bugreport/crash.jsp
#

その後、Ubuntuからのこのエラーメッセージが続きます

enter image description here

2
AAB

Ubuntu 16.04でEclipse Oxygen.1aを実行しているエラーログを次に示します。

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f6f8cc93c4c, pid=10184, tid=0x00007f7000304700
#
# JRE version: Java(TM) SE Runtime Environment (8.0_151-b12) (build 1.8.0_151-b12)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.151-b12 mixed mode linux-AMD64 compressed oops)
# Problematic frame:
# C  [libjavascriptcoregtk-4.0.so.18+0xd45c4c]  WTFCrash+0x1c
#
# 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.Java.com/bugreport/crash.jsp
#

このエラーはUbuntuだけでなく、EclipseとGTK Webkitの問題にも関連しているようです。

この問題は、EclipseのバグトラッカーとWebkitのバグトラッカーで追跡されています。

https://bugs.Eclipse.org/bugs/show_bug.cgi?id=5227

https://bugs.webkit.org/show_bug.cgi?id=177577

回避策:以前のGTK3で見つかった問題と同様に、可能な回避策は、Eclipseを(「--launcher.appendVmargs」の前に)Eclipse.iniファイルに追加することにより、強制的にGTK2に切り替えることです。

--launcher.GTK_version
2

これを参照してください 回答

1