Displaying 1 result from an estimated 1 matches for "r234143".
2015 Apr 18
4
[LLVMdev] [lld] Linker cannot handle sections with non-unique names
Hi,
FYI
LLD cannot handle ELF sections with non-unique names. An object file
with such sections can be generated by the Clang since r234143. I am
not sure that Clang works absolutely correct but bfd linker works
fine.
Right now I do not have a time to investigate this problem. If nobody
take, I will try to solve it later.
Here is the reproduction script for x86_64 host:
$ cat test.cc
template <class T>
void foo(T) {}
int main...