This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: [v3] libstdc++/47560
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org, libstdc++ at gcc dot gnu dot org
- Date: Mon, 7 Feb 2011 12:08:44 -0800
- Subject: Re: [v3] libstdc++/47560
- References: <20110201091530.3575a8eb@shotwell>
This first patch did not fix the issue. Guarding C++ keywords like
"namespace" etc by __cplusplus should fix it.
-benjamin
> tested x86/linux
2011-02-07 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/47560 try two
* config/os/hpux/os_defines.h: Guard for C++.
Index: config/os/hpux/os_defines.h
===================================================================
--- config/os/hpux/os_defines.h (revision 169894)
+++ config/os/hpux/os_defines.h (working copy)
@@ -58,10 +58,11 @@
We also force _GLIBCXX_USE_LONG_LONG here so that we don't have
to bastardize configure to deal with this sillyness. */
+#ifdef __cplusplus
namespace std
{
-_GLIBCXX_BEGIN_EXTERN_C
-
+ extern "C"
+ {
#ifndef __LP64__
__extension__ long long strtoll (const char *, char **, int)
__asm ("__strtoll");
@@ -73,9 +74,9 @@
__extension__ unsigned long long strtoull (const char *, char **, int)
__asm ("strtoul");
#endif
-
-_GLIBCXX_END_EXTERN_C
+ }
} // namespace std
+#endif // __cplusplus
#define _GLIBCXX_USE_LONG_LONG 1