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/testsuite/lib | |
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/testsuite/lib')
-rw-r--r-- | libgomp/testsuite/lib/libgomp.exp | 2 |
1 files changed, 2 insertions, 0 deletions
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 |