[pypy-svn] r72485 - pypy/trunk/pypy/translator/platform

xoraxax at codespeak.net xoraxax at codespeak.net
Sun Mar 21 02:30:30 CET 2010


Author: xoraxax
Date: Sun Mar 21 02:30:29 2010
New Revision: 72485

Modified:
   pypy/trunk/pypy/translator/platform/linux.py
Log:
Add -Wall to the linux compiler options.

Modified: pypy/trunk/pypy/translator/platform/linux.py
==============================================================================
--- pypy/trunk/pypy/translator/platform/linux.py	(original)
+++ pypy/trunk/pypy/translator/platform/linux.py	Sun Mar 21 02:30:29 2010
@@ -9,7 +9,7 @@
     name = "linux"
     
     link_flags = ['-pthread', '-lrt']
-    cflags = ['-O3', '-pthread', '-fomit-frame-pointer']
+    cflags = ['-O3', '-pthread', '-fomit-frame-pointer', '-Wall']
     standalone_only = []
     shared_only = ['-fPIC']
     so_ext = 'so'



More information about the Pypy-commit mailing list