diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2016-05-05 19:54:42 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2016-05-05 19:54:42 +0000 |
commit | 40436d81692c9ecf3606ef724978bde12a7dece5 (patch) | |
tree | 8fd6a4fce145769d24c27b8d2fdf54aac54edf71 /libstdc++-v3 | |
parent | c4f2425fe89117aa586d717c4d7d3b25c46bee66 (diff) | |
download | gcc-40436d81692c9ecf3606ef724978bde12a7dece5.zip gcc-40436d81692c9ecf3606ef724978bde12a7dece5.tar.gz gcc-40436d81692c9ecf3606ef724978bde12a7dece5.tar.bz2 |
Enable dg-reqire-sharedlib on Solaris
* testsuite/lib/libstdc++.exp (libstdc++_init): Enable on *-*-solaris*.
From-SVN: r235931
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6e2d7ce..ab6df14 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2016-05-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * testsuite/lib/libstdc++.exp (libstdc++_init): Enable on *-*-solaris*. + 2016-05-05 Jonathan Wakely <jwakely@redhat.com> * testsuite/experimental/filesystem/path/native/string.cc: Add diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index 9a930de..0f7f6d0 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -184,8 +184,9 @@ proc libstdc++_init { testfile } { set v3-sharedlib 0 set sharedlibdir [lookfor_file $blddir src/.libs/libstdc++.$shlib_ext] if {$sharedlibdir != ""} { - if { ([string match "*-*-linux*" $target_triplet] - || [string match "*-*-gnu*" $target_triplet]) + if { ([string match "*-*-gnu*" $target_triplet] + || [string match "*-*-linux*" $target_triplet] + || [string match "*-*-solaris*" $target_triplet]) && [isnative] } then { set v3-sharedlib 1 verbose -log "shared library support detected" |