Kentzo
Kentzo

Reputation: 3961

How to generate dSYM files without xcode?

Let's say I'm using autotools to build a product on Mac OS X with clang. How can I "manually" tell it to use right debugging format and the strip to a valid dSYM file?

Is there any specification of the dSYM bundle and files?

Upvotes: 5

Views: 4102

Answers (1)

Kentzo
Kentzo

Reputation: 3961

Figured out by looking the output of the Xcode:

dsymutil <binary> -o <binary>.dSYM
strip -S <binary>

Upvotes: 14

Related Questions