Don't run C tests in ld testsuite unless we have a C compiler
authorAlan Modra <amodra@gmail.com>
Mon, 2 Jan 2017 23:08:53 +0000 (09:38 +1030)
committerAlan Modra <amodra@gmail.com>
Tue, 3 Jan 2017 01:17:47 +0000 (11:47 +1030)
Removing the [isnative] check requires that we test for a C compiler.

* testsuite/ld-elf/elf.exp: Check that $CC exists before C tests.
* testsuite/ld-pie/pie.exp: Likewise.
* testsuite/ld-plugin/lto.exp: Likewise.

ld/ChangeLog
ld/testsuite/ld-elf/elf.exp
ld/testsuite/ld-pie/pie.exp
ld/testsuite/ld-plugin/lto.exp

index c216229c27620cdd54244ad26706002bd7e62792..d46deefbd0de828e1b33e628f8e074e29310d778 100644 (file)
@@ -1,3 +1,9 @@
+2017-01-03  Alan Modra  <amodra@gmail.com>
+
+       * testsuite/ld-elf/elf.exp: Check that $CC exists before C tests.
+       * testsuite/ld-pie/pie.exp: Likewise.
+       * testsuite/ld-plugin/lto.exp: Likewise.
+
 2017-01-02  Alan Modra  <amodra@gmail.com>
 
        * Makefile.am (bootstrap): Delete rule.
index a5244e4553d46b9d11012caa4781cc5d4d0412e6..9a26a7cb5f1e0b697b740255733a851a80014de9 100644 (file)
@@ -221,6 +221,11 @@ if { [istarget *-*-*linux*]
 
 set LDFLAGS $old_ldflags
 
+# Check to see if the C compiler works
+if { [which $CC] == 0 } {
+    return
+}
+
 if [check_gc_sections_available] {
     run_cc_link_tests {
        {"PR ld/13195" "-Wl,--gc-sections" ""
index e9d1162d723087b6cd3adf5855ac0012bcdbf09c..44d9f09a24fb90a812b108c6cd944b70f73562e5 100644 (file)
@@ -25,6 +25,11 @@ if { ![istarget *-*-linux*]
     return
 }
 
+# Check to see if the C compiler works
+if { [which $CC] == 0 } {
+    return
+}
+
 # Check if -pie is supported or not.
 send_log "$CC -fpie -pie $srcdir/$subdir/pie.c -o tmpdir/pie"
 catch "exec $CC -fpie -pie $srcdir/$subdir/pie.c -o tmpdir/pie" exec_output
index bfc1b1cfdcead4633eea8bee512a888b4cc354c4..b13c540850f58e0769854fed9cff6d7769fb3d05 100644 (file)
 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
 # MA 02110-1301, USA.
 
+# Check to see if the C compiler works
+if { [which $CC] == 0 } {
+    return
+}
+
 # These tests require plugin and LTO.
 if { ![check_plugin_api_available]
      || ![check_lto_available] } {