diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-01 08:59:20 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-01 08:59:20 +0000 |
commit | f796b57edd5754f34fa4b1bec45ca06ccf08847b (patch) | |
tree | d14cd0802efbabe2056a4896a173c27875c54289 /libmudflap | |
parent | fe1fdd3714c944b0bbb9ccfc74469abdf35387f4 (diff) | |
download | gcc-f796b57edd5754f34fa4b1bec45ca06ccf08847b.tar.gz |
libmudflap:
PR libmudflap/49549
* testsuite/lib/libmudflap.exp (load_gcc_lib): Load
target-supports.exp.
* testsuite/libmudflap.cth/cthfrags.exp: Only pass
--noinhibit-exec to GNU ld.
gcc:
PR libmudflap/49549
* doc/sourcebuild.texi (Effective-Target Keywords): Document gld.
gcc/testsuite:
PR libmudflap/49549
* lib/target-supports.exp (check_effective_target_gld): New proc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@175749 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libmudflap')
-rw-r--r-- | libmudflap/ChangeLog | 8 | ||||
-rw-r--r-- | libmudflap/testsuite/lib/libmudflap.exp | 3 | ||||
-rw-r--r-- | libmudflap/testsuite/libmudflap.cth/cthfrags.exp | 13 |
3 files changed, 19 insertions, 5 deletions
diff --git a/libmudflap/ChangeLog b/libmudflap/ChangeLog index f44f0ed18fe..177c01865d3 100644 --- a/libmudflap/ChangeLog +++ b/libmudflap/ChangeLog @@ -1,3 +1,11 @@ +2011-07-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + PR libmudflap/49549 + * testsuite/lib/libmudflap.exp (load_gcc_lib): Load + target-supports.exp. + * testsuite/libmudflap.cth/cthfrags.exp: Only pass + --noinhibit-exec to GNU ld. + 2011-06-27 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> PR libmudflap/38738 diff --git a/libmudflap/testsuite/lib/libmudflap.exp b/libmudflap/testsuite/lib/libmudflap.exp index a09eb959aae..bd9327d1408 100644 --- a/libmudflap/testsuite/lib/libmudflap.exp +++ b/libmudflap/testsuite/lib/libmudflap.exp @@ -1,4 +1,4 @@ -# Copyright (C) 2001, 2002, 2003, 2004, 2009, 2010 +# Copyright (C) 2001, 2002, 2003, 2004, 2009, 2010, 2011 # Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify @@ -30,6 +30,7 @@ proc load_gcc_lib { filename } { load_lib mfdg.exp load_lib libgloss.exp load_gcc_lib target-libpath.exp +load_gcc_lib target-supports.exp load_gcc_lib timeout.exp load_gcc_lib timeout-dg.exp diff --git a/libmudflap/testsuite/libmudflap.cth/cthfrags.exp b/libmudflap/testsuite/libmudflap.cth/cthfrags.exp index e5a7de84354..a025b03805f 100644 --- a/libmudflap/testsuite/libmudflap.cth/cthfrags.exp +++ b/libmudflap/testsuite/libmudflap.cth/cthfrags.exp @@ -11,10 +11,15 @@ foreach flags $MUDFLAP_FLAGS { set bsrc [file tail $srcfile] setenv MUDFLAP_OPTIONS "-viol-segv" if {$libmudflapth} then { - # --noinhibit-exec works around a ld problem that causes - # "Dwarf Error: Invalid or unhandled FORM value: 14" - # to fail builds unnecessarily. - dg-runtest $srcfile $flags "-fmudflapth -lmudflapth -lpthread -Wl,--noinhibit-exec" + if [check_effective_target_gld] { + # --noinhibit-exec works around a ld problem that causes + # "Dwarf Error: Invalid or unhandled FORM value: 14" + # to fail builds unnecessarily. + set noie_option " -Wl,--noinhibit-exec" + } else { + set noie_option "" + } + dg-runtest $srcfile $flags "-fmudflapth -lmudflapth -lpthread $noie_option" } else { if {$flags != ""} {set f " ($flags)"} {set f ""} untested "libmudflap.cth/$bsrc$f" |