9

So I try to debug an EXC_BAD_ACCESS error by editing my scheme, enabling all the different checks.

But the damn compiler gives me this error:

dyld: could not load inserted library '/usr/lib/libgmalloc.dylib' because image not found

I've googled around, someone solved by installing some kind of OS X combo installer (OS X 10.7.3), but I'm already running a newer version.

My Xcode is up to date so what is going wrong here?

4

2 回答 2

13

根据官方文档:https ://developer.apple.com/library/mac/documentation/performance/Conceptual/ManagingMemory/Articles/MallocDebug.html

要使用 Guard Malloc 进行调试,请将您的项目配置为在 Xcode 的方案编辑器中使用 Guard Malloc 运行。您可以将此选项用于在模拟器中运行的 Mac 应用程序和 iOS 应用程序。

所以没有设备支持。

于 2013-10-18T22:27:21.460 回答
-5

在此处输入图像描述

我已经通过执行以下功能解决了这个问题,它工作正常

1.首先进入项目中的Manage Schemes。

2.之后点击编辑按钮。

3.禁用“启用保护Malloc”。

4.之后点击确定按钮。

之后它工作正常

请检查上面的图片

于 2013-02-08T12:26:13.220 回答