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