diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-03-13 20:08:21 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2016-03-13 20:08:21 +0100 |
commit | be9f71435f623fcab876db2fc7bc337651b005e0 (patch) | |
tree | 22fd54863d96fd105c1227b1ee3e78e9daa99ab7 /libgomp | |
parent | 44e66a770938dabebfb572619c4c2f0f2492aec2 (diff) | |
download | gcc-be9f71435f623fcab876db2fc7bc337651b005e0.zip gcc-be9f71435f623fcab876db2fc7bc337651b005e0.tar.gz gcc-be9f71435f623fcab876db2fc7bc337651b005e0.tar.bz2 |
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.
From-SVN: r234170
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/testsuite/lib/libgomp.exp | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 7293e69..5a91504 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2016-03-13 Thomas Schwinge <thomas@codesourcery.com> + + * testsuite/lib/libgomp.exp (libgomp_init): Potentially append to + always_ld_library_path the path to libgcc_s. + 2016-03-10 Cesar Philippidis <cesar@codesourcery.com> PR testsuite/70009 diff --git a/libgomp/testsuite/lib/libgomp.exp b/libgomp/testsuite/lib/libgomp.exp index 0d5b6d4..1cb4991 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 |