gpt4 book ai didi

Eclipse 在 MacOS 上意外退出

转载 作者:行者123 更新时间:2023-12-05 09:29:51 26 4
gpt4 key购买 nike

昨天,我刚刚在 Mac OS Catalina 版本 10.15.7 上为企业 Java 和 Web 开发人员安装了 Eclipse IDE。我将 Eclipse.app 从 Downloads 文件夹拖到 Application 文件夹。它工作得很好。我创建了几个 servlet。但是今天当我点击应用程序打开它时,我收到了一个问题报告(错误),所以它没有打开。

错误详情是..

Time Awake Since Boot: 3300 seconds

System Integrity Protection: enabled

Crashed Thread: 0

Exception Type: EXC_CRASH (Code Signature Invalid) ExceptionCodes: 0x0000000000000000, 0x0000000000000000 Exception Note:
EXC_CORPSE_NOTIFY

Termination Reason: Namespace CODESIGNING, Code 0x1

kernel messages:

VM Regions Near 0 (cr2):

__TEXT                 000000000c447000-000000000c44b000 [   16K] r-x/r-x SM=COW  

Thread 0 Crashed: 0 ???
0x0000000015674000 _dyld_start + 0

Thread 0 crashed with X86 Thread State (64-bit): rax:0x0000000000000000 rbx: 0x0000000000000000 rcx: 0x0000000000000000rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi:0x0000000000000000 rbp: 0x0000000000000000 rsp: 0x00007ffee37bcc60
r8: 0x0000000000000000 r9: 0x0000000000000000 r10:0x0000000000000000 r11: 0x0000000000000000 r12: 0x0000000000000000r13: 0x0000000000000000 r14: 0x0000000000000000 r15:0x0000000000000000 rip: 0x0000000015674000 rfl: 0x0000000000000200cr2: 0x0000000000000000 Logical CPU: 0 Error Code:
0x00000000 Trap Number: 0


事实上,我已经用谷歌搜索了这个问题,但对其他人有用的解决方案对我并不适用。例如,我尝试了以下解决方案:

  • 从 Application 文件夹中移动 Eclipse.app
  • eclipse -clean
  • 我双击了可执行文件 eclipse,它位于 /Applications/Eclipse.app/Contents/MacOS

我想重新安装Eclipse,但在此之前我想知道是否有针对此问题的解决方案。

最佳答案

现代 Eclipse(2021-09 甚至更早)与 Gatekeeper 存在重大不兼容性,后者检​​查 Eclipse.app 包的代码设计。 Apple 不允许 self 修改 bundle ,因为它破坏了 macOS 的安全模型——作为恶意软件保护 (Xprotect)。请参阅:https://eclecticlight.co/tag/gatekeeper/

我怀疑 Info.plist 在初始启动后或在修改某些用户首选项或 IDE 设置时发生了变化。

诸如尝试手动协同设计之类的解决方法很麻烦,并且在 Catalina 上对我不起作用:

codesign -v -vvv --deep /Applications/Eclipse.app
/Applications/Eclipse.app: invalid Info.plist (plist or signature have been modified)
In architecture: x86_64

sudo codesign --force --sign - /Applications/Eclipse.app
Password:
/Applications/Eclipse.app: replacing existing signature
/Applications/Eclipse.app: bundle format unrecognized, invalid, or unsuitable
In subcomponent: /Applications/Eclipse.app/Contents/MacOS/${user.home}

对我有用的是通过递归删除隔离的特定扩展属性为 Gatekeeper 的 Xprotect 定义一个异常(exception)。在安装 Eclipse 之后和运行之前直接使用以下命令:

xattr -r -d com.apple.quarantine /Applications/Eclipse.app

参见:https://eclecticlight.co/2019/06/17/what-to-do-when-you-cant-launch-an-app/

关于Eclipse 在 MacOS 上意外退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70262544/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com