mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
0fea775e5c
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220004 91177308-0d34-0410-b5e6-96231b3b80d8
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;
|
|
}
|