Re: [pcre-dev] [Bug 664] New: ABI breakage in PCRE 7.6

Top Page
Delete this message
Author: Craig Silverstein
Date:  
To: 664
CC: pcre-dev
Subject: Re: [pcre-dev] [Bug 664] New: ABI breakage in PCRE 7.6
Jan, some folks at Google have come up with a solution that should
preserve ABI compatibility while still keeping the change. It uses
gcc aliases. I'm applying the patch against pcre 7.6 below; do you
mind trying it and seeing if it fixes the problems you were seeing?

craig

--cut here--

Index: pcrecpp.cc
===================================================================
--- pcrecpp.cc    (revision 319)
+++ pcrecpp.cc    (working copy)
@@ -57,6 +57,14 @@
 // Special object that stands-in for no argument
 Arg RE::no_arg((void*)NULL);


+// This is for ABI compatibility with old versions of pcre (pre-7.6),
+// which defined a global no_arg variable instead of putting it in the
+// RE class. This works on GCC >= 3, at least. We could probably have
+// a more inclusive test if we ever needed it.
+#if defined(__GNUC__) && __GNUC__ >= 3
+extern Arg no_arg __attribute__((alias("_ZN7pcrecpp2RE6no_argE")));
+#endif
+
// If a regular expression has no error, its error_ field points here
static const string empty_string;