The object file does not contain DWARF debugging information

I get the following error in Xcode 4 when trying to build:

The object file libIOSCoreSDK.a (Logging.o) does not contain debugging DWARF information

The My Xcode workspace contains two SDK project projects that compile the static library libIOSCoreSDK.a and a user interface project that libIOSCoreSDK.a on the use of the static library.

I have a number of classes in the SDK that I use in the user interface, and none of them have led to the above error so far.

+7
source share
1 answer

Your own static library, you need to rebuild it with debugging enabled.

+3
source

All Articles