]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Update x86-64 tests for --as-needed
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 13 Apr 2016 12:41:36 +0000 (05:41 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Sun, 12 Jun 2016 04:40:12 +0000 (21:40 -0700)
Since compiler may pass --as-needed to ld by default, link .o file
before .so file in x86-64 tests.

PR ld/19774
* testsuite/ld-x86-64/x86-64.exp: Link tmpdir/pr17689b.o before
tmpdir/pr17689.so, fix gotpcrel1 test and add more --as-needed
tests.

ld/ChangeLog
ld/testsuite/ld-x86-64/x86-64.exp

index 2e5b80e69b75bdebe51090fd135ae493f437f064..f26ee23edd5a8bda2bc984ec6d84d91b4345b60a 100644 (file)
@@ -1,6 +1,13 @@
 2016-06-11  H.J. Lu  <hongjiu.lu@intel.com>
 
        Backport from master
+       2016-04-13  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/19774
+       * testsuite/ld-x86-64/x86-64.exp: Link tmpdir/pr17689b.o before
+       tmpdir/pr17689.so, fix gotpcrel1 test and add more --as-needed
+       tests.
+
        2016-03-07  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR ld/19774
index 92236fb3ba1e91b23b01954ad93d598e5c20eaf7..c80f84649e4bf1da63910c3d7c63d9e07c6982ba 100644 (file)
@@ -491,26 +491,33 @@ if { [isnative] && [which $CC] != 0 } {
            "pr17689now.so" \
        ] \
        [list \
-           "Build pr17689 with PIE without -fPIE" \
-           "tmpdir/pr17689.so -pie" \
+           "Build pr17689b.o" \
+           "" \
            "" \
            { pr17689b.S } \
+           {} \
+       ] \
+       [list \
+           "Build pr17689 with PIE without -fPIE" \
+           "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
+           "" \
+           { dummy.s } \
            {{readelf {-Wr} pr17689.rd}} \
            "pr17689" \
        ] \
        [list \
            "Build pr17689 with PIE -z now without -fPIE" \
-           "tmpdir/pr17689.so -pie -Wl,-z,now" \
+           "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
            "" \
-           { pr17689b.S } \
+           { dummy.s } \
            {{readelf {-Wr} pr17689now.rd}} \
            "pr17689now" \
        ] \
        [list \
            "Build pr17827 with PIE without -fPIE" \
-           "tmpdir/pr17689.so -pie" \
+           "-Wl,--as-needed tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
            "" \
-           { pr17689b.S } \
+           { dummy.s } \
            {{readelf {-Wr} pr17827.rd}} \
            "pr17827" \
        ] \
@@ -562,11 +569,19 @@ if { [isnative] && [which $CC] != 0 } {
            "" \
            "gotpcrel1d.so" \
        ] \
+       [list \
+           "Build libgotpcrel1.a" \
+           "" \
+           "" \
+           { gotpcrel1a.S gotpcrel1b.c gotpcrel1c.c } \
+           "" \
+           "libgotpcrel1.a" \
+       ] \
        [list \
            "Build gotpcrel1" \
-           "tmpdir/gotpcrel1d.so" \
+           "-Wl,--as-needed tmpdir/gotpcrel1a.o tmpdir/gotpcrel1b.o tmpdir/gotpcrel1c.o tmpdir/gotpcrel1d.so" \
            "-Wa,-mrelax-relocations=yes" \
-           { gotpcrel1a.S gotpcrel1b.c gotpcrel1c.c } \
+           { dummy.s } \
            {{objdump {-dw} gotpcrel1.dd}} \
            "gotpcrel1" \
        ] \
@@ -618,17 +633,17 @@ if { [isnative] && [which $CC] != 0 } {
        ] \
        [list \
            "Run pr17689 with PIE without -fPIE" \
-           "tmpdir/pr17689.so -pie" \
+           "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
            "" \
-           { pr17689b.S } \
+           { dummy.s } \
            "pr17689" \
            "pr17689.out" \
        ] \
        [list \
            "Run pr17689 with PIE -z now without -fPIE" \
-           "tmpdir/pr17689.so -pie -z now" \
+           "--as-needed tmpdir/pr17689b.o tmpdir/pr17689.so -pie -z now" \
            "" \
-           { pr17689b.S } \
+           { dummy.s } \
            "pr17689now" \
            "pr17689.out" \
        ] \