[ELF] Work around not-fully-supported .gnu.linkonce.t.__x86.get_pc_thunk.bx
authorFangrui Song <i@maskray.me>
Tue, 15 Mar 2022 21:48:29 +0000 (14:48 -0700)
committerFangrui Song <i@maskray.me>
Tue, 15 Mar 2022 21:48:29 +0000 (14:48 -0700)
lld/ELF/Driver.cpp
lld/test/ELF/i386-linkonce.s

index 15434cc..72eff69 100644 (file)
@@ -2490,6 +2490,10 @@ void LinkerDriver::link(opt::InputArgList &args) {
   parallelForEach(bitcodeFiles, [](BitcodeFile *file) { file->postParse(); });
   for (auto &it : ctx->nonPrevailingSyms) {
     Symbol &sym = *it.first;
+    // See the FIXME in InputFiles.cpp.
+    if (sym.getName() == "__x86.get_pc_thunk.bx" ||
+        sym.getName() == "__i686.get_pc_thunk.bx")
+      continue;
     sym.replace(Undefined{sym.file, sym.getName(), sym.binding, sym.stOther,
                           sym.type, it.second});
     cast<Undefined>(sym).nonPrevailing = true;
index f7da0ae..08727e0 100644 (file)
@@ -2,9 +2,11 @@
 // RUN: llvm-mc -filetype=obj -triple=i386-linux-gnu %s -o %t.o
 // RUN: llvm-mc -filetype=obj -triple=i386-linux-gnu %p/Inputs/i386-linkonce.s -o %t2.o
 // RUN: llvm-ar rcs %t2.a %t2.o
-// RUN: not ld.lld %t.o %t2.a -o /dev/null 2>&1 | FileCheck %s
 
-// CHECK: error: relocation refers to a symbol in a discarded section: __i686.get_pc_thunk.bx
+/// crti.o in i386 glibc<2.32 has .gnu.linkonce.t.__x86.get_pc_thunk.bx that is
+/// not fully supported. Test that we don't report
+/// "relocation refers to a symbol in a discarded section: __x86.get_pc_thunk.bx".
+// RUN: ld.lld %t.o %t2.a -o /dev/null
 
     .globl _start
 _start: