Java 无法在 MacOS X Leopard 上运行

发布于 2024-09-05 16:10:22 字数 421 浏览 2 评论 0原文

我正在运行 Leopard,xcode 3.1.3。当我在命令行输入“java”时,我得到以下信息:

dyld: could not load inserted library: /usr/lib/libSaturnFE.dylib

Trace/BPT trap

我做了什么?不久前我确实用 Saturn 做了一些分析,但我不知道它会搞砸我的机器。我相当确定它在我第一次安装 xcode 时有效。

我想我可以安装一个与 Xcode 附带的不同的 Java SDK 吗?我找不到不需要我升级到 Snow Leopard 的 Xcode 升级路径。我只是现在不想升级到 Snow Leopard,因为我没有良好的磁盘备份。

编辑:至少如果有人能给我指出一个资源,甚至是一个 Mac 论坛,我可以在其中提出这个问题,那将非常有帮助。

I'm running Leopard, xcode 3.1.3. When I type "java" at the command line I get this:

dyld: could not load inserted library: /usr/lib/libSaturnFE.dylib

Trace/BPT trap

What did I do? I did do some profiling with Saturn a while back but I didn't know it was going to screw up my machine. I'm fairly sure it worked when I first installed xcode.

I guess I could install a different Java SDK than the one that came with Xcode? I can't find an upgrade path for Xcode that doesn't require me to upgrade to Snow Leopard. I just don't feel like upgrading to Snow Leopard right now because I don't have good disk backups in place.

edit: at least if anybody could point me to a resource or even a Mac forum where I could ask this question it would be really helpful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不知在何时 2024-09-12 16:10:22

我想通了。我忘记了我把它留在了我的 .profile 中:

export DYLD_INSERT_LIBRARIES=/usr/lib/libSaturnFE.dylib
export DYLD_FORCE_FLAT_NAMESPACE=1

这两个变量中的第一个导致了系统调用的运行时覆盖或一些搞乱了 java 的东西。

I figured it out. I forgot that I left this in my .profile:

export DYLD_INSERT_LIBRARIES=/usr/lib/libSaturnFE.dylib
export DYLD_FORCE_FLAT_NAMESPACE=1

The first of these two variables was causing a runtime override of system calls or something which was messing up java.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文