Reputation: 3961
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
Reputation: 3961
Figured out by looking the output of the Xcode:
dsymutil <binary> -o <binary>.dSYM
strip -S <binary>
Upvotes: 14