Displaying 1 result from an estimated 1 matches for "005b1a".
Did you mean:
0051
2013 Aug 23
1
[LLVMdev] gsplit-dwarf broken on Linux?
...know if recent commits could cause this error, or I
should go to bisect/debug this? Do we have tests that check that
-gsplit-dwarf succeeds (i.e. compile and link step work)?
$ cat a.cc
int foo(int x) {
return x + 1;
}
int main() {
return foo(42);
}
$ ./bin/clang++ -gsplit-dwarf a.cc
/tmp/a-005b1a.o(.debug_pubnames+0x6): error: undefined reference to
'.L.debug_info_begin0'
clang-3.3: error: linker command failed with exit code 1 (use -v to see
invocation)
$ ./bin/clang++ -gsplit-dwarf a.cc -###
clang version 3.4 (189088)
Target: x86_64-unknown-linux-gnu
Thread model: posix
"/...