From: tschwinge Date: Sun, 13 Mar 2016 19:08:21 +0000 (+0000) Subject: libgcc_s is required by libstdc++ X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=16603d6b5b9073537c00b706b854f0a87101b991;p=thirdparty%2Fgcc.git libgcc_s is required by libstdc++ libgomp/ * testsuite/lib/libgomp.exp (libgomp_init): Potentially append to always_ld_library_path the path to libgcc_s. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234170 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 7293e697362c..5a9150483ae0 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2016-03-13 Thomas Schwinge + + * testsuite/lib/libgomp.exp (libgomp_init): Potentially append to + always_ld_library_path the path to libgcc_s. + 2016-03-10 Cesar Philippidis PR testsuite/70009 diff --git a/libgomp/testsuite/lib/libgomp.exp b/libgomp/testsuite/lib/libgomp.exp index 0d5b6d42d7e8..1cb4991e07e6 100644 --- a/libgomp/testsuite/lib/libgomp.exp +++ b/libgomp/testsuite/lib/libgomp.exp @@ -142,6 +142,8 @@ proc libgomp_init { args } { append always_ld_library_path ":${blddir}/../liboffloadmic/plugin/.libs" # libstdc++ is required by liboffloadmic append always_ld_library_path ":${blddir}/../libstdc++-v3/src/.libs" + # libgcc_s is required by libstdc++ + append always_ld_library_path ":${blddir}/../libgcc" } global offload_additional_lib_paths