diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-22 13:35:38 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-22 13:35:38 +0000 |
commit | 1fda33601e716093e074ab72f287f6992321ed62 (patch) | |
tree | e8e77688f0a4c0c209ef99bb741123696ae9b58a /libstdc++-v3/configure | |
parent | ed7c2476b35f22ad276d45b7d8c10b0e5171f285 (diff) | |
download | gcc-1fda33601e716093e074ab72f287f6992321ed62.tar.gz |
PR libstdc++/36101, PR libstdc++/42813
[toplevel]:
* configure.ac (target_configdirs): Substitute.
* Makefile.def: Bootstrap target module libgomp.
Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
* Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
(BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
* configure, Makefile.in: Regenerate.
libstdc++-v3:
* acinclude.m4: (enable_parallel): Test ${TARGET_CONFIGDIRS} instead of
loking for omp.h .
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156172 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/configure')
-rwxr-xr-x | libstdc++-v3/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 1c6bec4c9fe..ed611d66d12 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -17056,11 +17056,11 @@ $as_echo "$enable_libstdcxx_debug" >&6; } # See if configured libgomp/omp.h exists. (libgomp may be in # noconfigdirs but not explicitly disabled.) - if test -f $glibcxx_builddir/../libgomp/omp.h; then + if echo " ${TARGET_CONFIGDIRS} " | grep " libgomp " > /dev/null 2>&1 ; then enable_parallel=yes; else - { $as_echo "$as_me:${as_lineno-$LINENO}: $glibcxx_builddir/../libgomp/omp.h not found" >&5 -$as_echo "$as_me: $glibcxx_builddir/../libgomp/omp.h not found" >&6;} + { $as_echo "$as_me:${as_lineno-$LINENO}: target-libgomp not built" >&5 +$as_echo "$as_me: target-libgomp not built" >&6;} fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for parallel mode support" >&5 |