diff options
author | Iain Sandoe <iain.sandoe@sandoe-acoustics.co.uk> | 2009-12-22 22:11:27 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2009-12-22 22:11:27 +0000 |
commit | 1d32a77299d85c86579f55b6a211e27c9a7dd9d0 (patch) | |
tree | 276226950720312d163d3a137b5a15f95c8c7bd7 /libgomp | |
parent | 4e7caa34a2092e248a538e108689c8f4cfb03159 (diff) | |
download | gcc-1d32a77299d85c86579f55b6a211e27c9a7dd9d0.tar.gz |
re PR target/41605 (Static linking of libgcc/libgfortran/libstdc++ can cause inconsistent symbol resolution.)
2009-12-22 Iain Sandoe <iain.sandoe@sandoe-acoustics.co.uk>
gcc/
PR target/41605
* lib/g++.exp: Provide -B options to allow for link spec %s
substitutions for static libraries.
libstdc++-v3/
PR target/41605
* testsuite/libstdc++-abi/abi.exp: Provide -B options to allow for
link spec %s substitutions for static libraries.
* testsuite/lib/libstdc++.exp: Ditto
libgomp/
PR target/41605
* testsuite/lib/libgomp.exp: Provide -B options to allow for
link spec %s substitutions for static libraries.
From-SVN: r155408
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/ChangeLog | 6 | ||||
-rw-r--r-- | libgomp/testsuite/lib/libgomp.exp | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 5d2822028e7..6644d9d2528 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,9 @@ +2009-12-22 Iain Sandoe <iain.sandoe@sandoe-acoustics.co.uk> + + PR target/41605 + * testsuite/lib/libgomp.exp: Provide -B options to allow for + link spec %s substitutions for static libraries. + 2009-12-18 Jack Howarth <howarth@bromo.med.uc.edu> PR testsuite/42135 diff --git a/libgomp/testsuite/lib/libgomp.exp b/libgomp/testsuite/lib/libgomp.exp index 0c8e49f8d85..0b0b608bf9e 100644 --- a/libgomp/testsuite/lib/libgomp.exp +++ b/libgomp/testsuite/lib/libgomp.exp @@ -130,6 +130,9 @@ proc libgomp_init { args } { set ALWAYS_CFLAGS "" if { $blddir != "" } { lappend ALWAYS_CFLAGS "additional_flags=-B${blddir}/" + # targets that use libgomp.a%s in their specs need a -B option + # for uninstalled testing. + lappend ALWAYS_CFLAGS "additional_flags=-B${blddir}/.libs" lappend ALWAYS_CFLAGS "additional_flags=-I${blddir}" lappend ALWAYS_CFLAGS "ldflags=-L${blddir}/.libs" } |