Alexi Groove
Alexi Groove

Reputation: 6686

Xcode and Generate Debug Symbols

Which setting in Project Settings page needs to be set in order for Xcode to generate debug symbols for a project?

If I set 'Generate Profiling Code" to checked, as soon as I try to build, I get the error,

cc1obj: error: unrecognised debug output level "-full"

If not, the other way to do this I thought was by setting the 'OTHER_CFLAGS' value to '-g' but it also yields the same error.

Upvotes: 1

Views: 10733

Answers (1)

dreamlax
dreamlax

Reputation: 95315

Under your compiler's settings group ("i.e. GCC 4.2 - Code Generation") there's a setting called "Generate Debug Symbols".

You can get an overview of probably all debug-related settings just by typing "debug" in the search box.

Upvotes: 1

Related Questions