Author: Ronny Pfannschmidt <[email protected]>
Branch: link-old-glibc-abi
Changeset: r59959:c8511419a805
Date: 2013-01-11 13:57 +0100
http://bitbucket.org/pypy/pypy/changeset/c8511419a805/
Log: disable glibc 2.15 source fortify to avoid a symbol
diff --git a/pypy/translator/platform/posix.py
b/pypy/translator/platform/posix.py
--- a/pypy/translator/platform/posix.py
+++ b/pypy/translator/platform/posix.py
@@ -112,6 +112,10 @@
else:
cflags = self.cflags + self.standalone_only
+ # disables glibc source fortify because
+ # it requires glibc 2.15 for the __fdel_chk symbol
+ cflags.append('-D_FORTIFY_SOURCE=0')
+
m = GnuMakefile(path)
m.exe_name = exe_name
m.eci = eci
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit