Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Object file doesn't contain DWARF debug information

Tags:

ios

xcode4

I am getting the following error in Xcode 4 when attempting to build:

libIOSCoreSDK.a(Logging.o) object file doesn't contain DWARF debug information

My Xcode workspace contains two projects a SDK project which compiles the static library libIOSCoreSDK.a and a UI project which is linked to use the static library.

I have a number of classes in the SDK which I use in the UI and none of them have resulted in the above error until now.

like image 220
lucasweb Avatar asked Aug 16 '11 00:08

lucasweb


1 Answers

Its a static library, you need to rebuild it with debug turned on.

like image 92
deleted_user Avatar answered Oct 01 '22 23:10

deleted_user