[pypy-svn] r65287 - pypy/branch/pyjitpl5/pypy/translator/platform

fijal at codespeak.net fijal at codespeak.net
Sun May 17 23:11:31 CEST 2009


Author: fijal
Date: Sun May 17 23:11:31 2009
New Revision: 65287

Modified:
   pypy/branch/pyjitpl5/pypy/translator/platform/linux.py
Log:
I think the time is now to have -O3 as default


Modified: pypy/branch/pyjitpl5/pypy/translator/platform/linux.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/translator/platform/linux.py	(original)
+++ pypy/branch/pyjitpl5/pypy/translator/platform/linux.py	Sun May 17 23:11:31 2009
@@ -9,7 +9,7 @@
     name = "linux"
     
     link_flags = ['-pthread']
-    cflags = ['-O0', '-pthread', '-fomit-frame-pointer']
+    cflags = ['-O3', '-pthread', '-fomit-frame-pointer']
     standalone_only = []
     shared_only = []
     so_ext = 'so'



More information about the Pypy-commit mailing list