Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse quit unexpectedly 2022-06 [duplicate]

I have started learning Java and am having this error for a few days. I install eclipse and it works just fine. The next day when I try opening the app it doesn't open and I get a message:

"The application “Eclipse” can’t be opened." and then "eclipse quit unexpectedly"

on clicking 'show details':

-------------------------------------
Translated Report 
-------------------------------------

Incident Identifier: FAF2D9F4-0509-4333-8A9B-7DD02068E9E1
CrashReporter Key:   F85AF088-28E6-8FB6-4EAB-F263B78EA434
Hardware Model:      MacBookAir9,1
Process:             eclipse [27160]
Path:                /Applications/Eclipse.app/Contents/MacOS/eclipse
Identifier:          org.eclipse.platform.ide
Version:             4.24.0 (4.24.0.I20220607-0700)
Code Type:           X86-64 (Native)
Role:                Default
Parent Process:      launchd [1]
Coalition:           org.eclipse.platform.ide [13823]

Date/Time:           2022-06-22 21:02:08.7804 +0530
Launch Time:         2022-06-22 21:02:08.6956 +0530
OS Version:          macOS 12.3.1 (21E258)
Release Type:        User
Report Version:      104

Exception Type:  EXC_CRASH (SIGKILL (Code Signature Invalid))
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Reason: CODESIGNING 1 

Triggered by Thread:  0

Thread 0 Crashed:
0                                           0x16854ad0 _dyld_start + 0
1   ???                                      0x7062000 ???


Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000000  rdx: 0x0000000000000000
  rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x0000000000000000  rsp: 0x00007ff7b8ea1be8
   r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
  r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
  rip: 0x0000000016854ad0  rfl: 0x0000000000000200  cr2: 0x0000000000000000
  
Logical CPU:     0
Error Code:      0x00000000 
Trap Number:     0


Binary Images:
        0x16850000 -         0x168bbfff  (*) <dd9e80de-fb3b-349b-96a4-46874ad34d11> 
         0x7062000 -          0x7065fff ??? (*) <bf0baa93-fe7a-3039-ac22-e0007dc821f4> ???

Error Formulating Crash Report:
dyld_process_snapshot_get_shared_cache failed

EOF

I have done the uninstall-install twice and the same thing keeps happening

like image 920
CyberRohan1836 Avatar asked Nov 29 '25 20:11

CyberRohan1836


1 Answers

I had exactly the same problem, with Eclipse RCP, and more over this happening on the second launch. Eclipse 🤦‍♂️...

I fixed it this way :

codesign --force --deep --sign - /Applications/Eclipse\ RCP.app

Downloaded from:

https://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/2022-06/R/eclipse-rcp-2022-06-R-macosx-cocoa-x86_64.dmg&r=1

Build id :

Eclipse IDE for RCP and RAP Developers (includes Incubating components)

Version: 2022-06 (4.24.0)
Build id: 20220609-1112

My report :

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Incident Identifier: 1943C246-131A-4DC3-AC4B-BC431277597F
CrashReporter Key:   9F468016-722D-5A74-FC64-D618E063DE20
Hardware Model:      MacBookPro16,2
Process:             eclipse [11128]
Path:                /Applications/Eclipse RCP.app/Contents/MacOS/eclipse
Identifier:          org.eclipse.platform.ide
Version:             4.24.0 (4.24.0.I20220607-0700)
Code Type:           X86-64 (Native)
Role:                Default
Parent Process:      launchd [1]
Coalition:           org.eclipse.platform.ide [64436]

Date/Time:           2022-07-04 15:27:03.5732 +0200
Launch Time:         2022-07-04 15:27:03.5298 +0200
OS Version:          macOS 12.4 (21F79)
Release Type:        User
Report Version:      104

Exception Type:  EXC_CRASH (SIGKILL (Code Signature Invalid))
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Reason: CODESIGNING 1 

Highlighted by Thread:  0

Backtrace not available

No thread state (register information) available

Binary Images:
Binary images description not available

Error Formulating Crash Report:
_dyld_process_info_create failed with 6
dyld_process_snapshot_get_shared_cache failed
Failed to create CSSymbolicatorRef - corpse still valid ¯\_(ツ)_/¯
thread_get_state(PAGEIN) returned 0x10000003: (ipc/send) invalid destination port
thread_get_state(EXCEPTION) returned 0x10000003: (ipc/send) invalid destination port
thread_get_state(FLAVOR) returned 0x10000003: (ipc/send) invalid destination port

EOF

macOs version:

ProductName:    macOS
ProductVersion: 12.4
BuildVersion:   21F79
like image 182
Brice Avatar answered Dec 02 '25 09:12

Brice