From: redi Date: Tue, 2 Aug 2016 09:40:50 +0000 (+0000) Subject: Support using -flto with libstdc++ testsuite X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a5e3fbd8011726363b09a16229f6e717be78255;p=thirdparty%2Fgcc.git Support using -flto with libstdc++ testsuite * testsuite/lib/libstdc++.exp (v3-build_support): Add -fno-lto to additional flags for compiling libtestc++.a objects. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@238978 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index aeeb7716d7d0..6f6554f6864f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2016-08-02 Jonathan Wakely + + * testsuite/lib/libstdc++.exp (v3-build_support): Add -fno-lto to + additional flags for compiling libtestc++.a objects. + 2016-08-01 Jonathan Wakely * include/bits/basic_string.h (data() const): Update comment. diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index 7bf91f3efeca..e2afbe541a8f 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -636,8 +636,9 @@ proc v3-build_support { } { set object_file [file tail $obj] # Compile with "-w" so that warnings issued by the compiler # do not prevent compilation. + # Disable LTO so that ar/ranlib don't need the LTO plugin. if { [v3_target_compile $srcdir/util/$f $object_file "object" \ - [list "incdir=$srcdir" "additional_flags=-w"]] + [list "incdir=$srcdir" "additional_flags=-w -fno-lto"]] != "" } { error "could not compile $f" }