]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
ld: Add an LTO test for common symbol override
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 14 Aug 2024 15:29:15 +0000 (08:29 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 14 Aug 2024 15:40:18 +0000 (08:40 -0700)
Linker checks if a symbol in an archive member is a real definition, not
common, before including the archive member in the link output so that
only a real definition in archive will override the common symbol in
object file.  Add an LTO test to verify that a real definition in archive
overrides the common symbol in object file.

* testsuite/ld-plugin/common-1.c: New file.
* testsuite/ld-plugin/definition-1.c: Likewise.
* testsuite/ld-plugin/lto.exp: Run common tests.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
ld/testsuite/ld-plugin/common-1.c [new file with mode: 0644]
ld/testsuite/ld-plugin/definition-1.c [new file with mode: 0644]
ld/testsuite/ld-plugin/lto.exp

diff --git a/ld/testsuite/ld-plugin/common-1.c b/ld/testsuite/ld-plugin/common-1.c
new file mode 100644 (file)
index 0000000..b4f616a
--- /dev/null
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+int foo;
+
+int main()
+{
+  if (foo == 1)
+    printf ("PASS\n");
+
+  return 0;
+}
diff --git a/ld/testsuite/ld-plugin/definition-1.c b/ld/testsuite/ld-plugin/definition-1.c
new file mode 100644 (file)
index 0000000..a244740
--- /dev/null
@@ -0,0 +1 @@
+int foo = 1;
index 1a8c3736307fdf51dfad5ddaa3cbf90b0d441550..bbd68407edcda3b80bcdbad728ade166e382d853 100644 (file)
@@ -231,6 +231,13 @@ set lto_link_tests [list \
    "$plug_opt" "-flto $lto_no_fat -fcommon" \
    {pr26389.c} \
    [list [list "nm" "$plug_opt" "pr26389.d"]]] \
+  [list "Build libdefinition-1.a" \
+   "$plug_opt" \
+   "-O2 -fcommon -flto $lto_no_fat" \
+   {definition-1.c} \
+   {} \
+   "libdefinition-1.a" \
+  ] \
 ]
 
 if { [at_least_gcc_version 10 0] && [check_lto_shared_available] } {
@@ -763,6 +770,17 @@ set lto_run_tests [list \
    {pr26262a.c} "pr26262b" "pass.out" \
    "-flto -O2" "c" "" \
    ""] \
+  [list "Run common-1" \
+   "-O2 -flto" \
+   "" \
+   {common-1.c} \
+   "common-1" \
+   "pass.out" \
+   "-O2 -fcommon -flto $lto_no_fat" \
+   "c" \
+   "" \
+   "tmpdir/libdefinition-1.a" \
+  ] \
 ]
 
 if { [at_least_gcc_version 4 7] } {