[pypy-commit] pypy default: (mattip, arigato, plan_rich) solve issue #2339

plan_rich pypy.commits at gmail.com
Mon Jul 4 10:39:52 EDT 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: 
Changeset: r85537:f24ba12ad3d2
Date: 2016-07-04 16:39 +0200
http://bitbucket.org/pypy/pypy/changeset/f24ba12ad3d2/

Log:	(mattip, arigato, plan_rich) solve issue #2339

diff --git a/pypy/module/cpyext/test/test_cpyext.py b/pypy/module/cpyext/test/test_cpyext.py
--- a/pypy/module/cpyext/test/test_cpyext.py
+++ b/pypy/module/cpyext/test/test_cpyext.py
@@ -78,7 +78,7 @@
     else:
         libraries = []
         if sys.platform.startswith('linux'):
-            compile_extra = ["-Werror", "-g", "-O0", "-fPIC"]
+            compile_extra = ["-Werror", "-g", "-O0", "-Wp,-U_FORTIFY_SOURCE", "-fPIC"]
             link_extra = ["-g"]
         else:
             compile_extra = link_extra = None


More information about the pypy-commit mailing list