[pypy-svn] r73701 - pypy/branch/cpython-extension/pypy/translator/platform

fijal at codespeak.net fijal at codespeak.net
Tue Apr 13 03:48:00 CEST 2010


Author: fijal
Date: Tue Apr 13 03:47:58 2010
New Revision: 73701

Modified:
   pypy/branch/cpython-extension/pypy/translator/platform/linux.py
Log:
Let's assume we know what we're doing and decrease the number of warnings


Modified: pypy/branch/cpython-extension/pypy/translator/platform/linux.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/translator/platform/linux.py	(original)
+++ pypy/branch/cpython-extension/pypy/translator/platform/linux.py	Tue Apr 13 03:47:58 2010
@@ -7,7 +7,7 @@
     name = "linux"
     
     link_flags = ['-pthread', '-lrt']
-    cflags = ['-O3', '-pthread', '-fomit-frame-pointer', '-Wall']
+    cflags = ['-O3', '-pthread', '-fomit-frame-pointer', '-Wall', '-Wno-unused']
     standalone_only = []
     shared_only = ['-fPIC']
     so_ext = 'so'



More information about the Pypy-commit mailing list