Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 928
Kentzo Avatar asked Dec 19 '22 09:12

Kentzo


1 Answers

Figured out by looking the output of the Xcode:

dsymutil <binary> -o <binary>.dSYM
strip -S <binary>
like image 163
Kentzo Avatar answered Jan 17 '23 12:01

Kentzo