diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-01-07 22:48:03 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-01-07 22:48:03 +0000 |
commit | 8a75144c232a5339f62f6b2631b14d441b9a6189 (patch) | |
tree | 22dccd08d2bc5c5b6e1c2366084c29c8e88922d4 /libgomp/libgomp.h | |
parent | 292add682a552190b183d03502715fc2a4171913 (diff) | |
download | gcc-8a75144c232a5339f62f6b2631b14d441b9a6189.tar.gz |
PR libgomp/38086
* acinclude.m4 (HAVE_AS_SYMVER_DIRECTIVE): New check.
* libgomp.h (LIBGOMP_GNU_SYMBOL_VERSIONING): Undefine if
HAVE_AS_SYMVER_DIRECTIVE is not defined.
* configure: Regenerated.
* config.h.in: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@143168 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp/libgomp.h')
-rw-r--r-- | libgomp/libgomp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgomp/libgomp.h b/libgomp/libgomp.h index 7292358b9aa..5acee09f4d5 100644 --- a/libgomp/libgomp.h +++ b/libgomp/libgomp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc. +/* Copyright (C) 2005, 2007, 2008, 2009 Free Software Foundation, Inc. Contributed by Richard Henderson <rth@redhat.com>. This file is part of the GNU OpenMP Library (libgomp). @@ -516,6 +516,7 @@ gomp_work_share_init_done (void) #if !defined (HAVE_ATTRIBUTE_VISIBILITY) \ || !defined (HAVE_ATTRIBUTE_ALIAS) \ + || !defined (HAVE_AS_SYMVER_DIRECTIVE) \ || !defined (PIC) # undef LIBGOMP_GNU_SYMBOL_VERSIONING #endif |