When compiling a program in one pass clang
, it actually launches dsymutil
for you, which is responsible for creating the file .dSYM
. Thus, the solution to your problem is to compile and link separately, in which case clang
it will not automatically invoke dsymutil
.
Check this SO question for more details!
source
share