[pypy-svn] r77986 - pypy/branch/32ptr-on-64bit/pypy/translator/c

arigo at codespeak.net arigo at codespeak.net
Fri Oct 15 15:13:45 CEST 2010


Author: arigo
Date: Fri Oct 15 15:13:44 2010
New Revision: 77986

Modified:
   pypy/branch/32ptr-on-64bit/pypy/translator/c/genc.py
Log:
Change the value of DEBUGFLAGS in non-asmgcc builds to
remove -O1.  This is fine with the extra stack that we
get by the recent change to c/src/stack.h.


Modified: pypy/branch/32ptr-on-64bit/pypy/translator/c/genc.py
==============================================================================
--- pypy/branch/32ptr-on-64bit/pypy/translator/c/genc.py	(original)
+++ pypy/branch/32ptr-on-64bit/pypy/translator/c/genc.py	Fri Oct 15 15:13:44 2010
@@ -628,7 +628,7 @@
                         python + '$(PYPYDIR)/translator/c/gcc/trackgcroot.py $(GCMAPFILES) > $@')
 
         else:
-            mk.definition('DEBUGFLAGS', '-O1 -g')
+            mk.definition('DEBUGFLAGS', '-g')
         mk.write()
         #self.translator.platform,
         #                           ,



More information about the Pypy-commit mailing list