
llvm-symbolizer will consult one of the .dSYM paths passed via -dsym-hint if it fails to find the .dSYM bundle at the default location. llvm-svn: 220004
9 lines
238 B
C
9 lines
238 B
C
// clang -c dsym-test.c -g
|
|
// clang dsym-test.o -g -o dsym-test-exe
|
|
// dsymutil dsym-test-exe
|
|
// clang dsym-test.o -g -o dsym-test-exe-second
|
|
// dsymutil dsym-test-exe-second -o dsym-test-exe-differentname.dSYM
|
|
int main() {
|
|
return 0;
|
|
}
|