종료 시 생성된 Eclipse 오류 로그 파일

종료 시 생성된 Eclipse 오류 로그 파일

저는 우분투 16.04 LTS를 실행하고 있습니다. Eclipse Oxygen(9월)은 Java 파일을 편집하려고 할 때 Eclipse를 닫을 때 제대로 작동하는 것 같습니다. /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의 오류 메시지가 표시됩니다.

여기에 이미지 설명을 입력하세요

답변1

다음은 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=522733

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

해결 방법: GTK3에서 발견된 이전 문제와 마찬가지로 가능한 해결 방법은 eclipse.ini 파일("--launcher.appendVmargs" 앞)에 이를 추가하여 Eclipse가 GTK2로 다시 전환하도록 하는 것입니다.

--launcher.GTK_version
2

이것을 참조하십시오답변

관련 정보