diff options
author | David Billinghurst <billingd@gcc.gnu.org> | 2009-05-15 09:23:58 +0000 |
---|---|---|
committer | David Billinghurst <billingd@gcc.gnu.org> | 2009-05-15 09:23:58 +0000 |
commit | 602feda58d81ba6da4154cbb3e1bc3e9b6578a1e (patch) | |
tree | 97b21dbaa6e4c2f67b3043dcfe36e806948c7b8c | |
parent | d05db9ccfa01797a859763d2124dbe9de58bffcd (diff) | |
download | gcc-602feda58d81ba6da4154cbb3e1bc3e9b6578a1e.zip gcc-602feda58d81ba6da4154cbb3e1bc3e9b6578a1e.tar.gz gcc-602feda58d81ba6da4154cbb3e1bc3e9b6578a1e.tar.bz2 |
re PR libstdc++/36211 (__iconv_adaptor chooses char** where const char** is required)
2009-05-15 David Billinghurst <billingd@gcc.gnu.org>
PR libstdc++/36211
* testsuite/lib/libstdc++.exp(v3_target_compile): Add
cxxldflags to additional_flags rather than cxx_final.
From-SVN: r147565
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f37e28a5..b82cc2c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,11 @@ 2009-05-15 David Billinghurst <billingd@gcc.gnu.org> + PR libstdc++/36211 + * testsuite/lib/libstdc++.exp(v3_target_compile): Add + cxxldflags to additional_flags rather than cxx_final. + +2009-05-15 David Billinghurst <billingd@gcc.gnu.org> + * testsuite/26_numerics/random/discrete_distribution/cons/num_xbound_fun.cc: Replace non-standard macro M_PI with constant pi. * testsuite/26_numerics/random/piecewise_constant_distribution/cons/initlist_fun.cc: diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index 3adf91c..45e92d7 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -402,8 +402,7 @@ proc v3_target_compile { source dest type options } { # Flag setting based on type argument. if { $type == "executable" } { # Link the support objects into executables. - set cxx_final [concat $cxx_final $cxxldflags] - lappend options "additional_flags=./libtestc++.a" + lappend options "additional_flags=./libtestc++.a $cxxldflags" } else { if { $type == "sharedlib" } { # Don't link in anything. |