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

fijal at codespeak.net fijal at codespeak.net
Fri Jan 15 18:16:28 CET 2010


Author: fijal
Date: Fri Jan 15 18:16:27 2010
New Revision: 70619

Modified:
   pypy/trunk/pypy/translator/platform/linux.py
Log:
issue489
fixed


Modified: pypy/trunk/pypy/translator/platform/linux.py
==============================================================================
--- pypy/trunk/pypy/translator/platform/linux.py	(original)
+++ pypy/trunk/pypy/translator/platform/linux.py	Fri Jan 15 18:16:27 2010
@@ -11,7 +11,7 @@
     link_flags = ['-pthread', '-lrt']
     cflags = ['-O3', '-pthread', '-fomit-frame-pointer']
     standalone_only = []
-    shared_only = []
+    shared_only = ['-fPIC']
     so_ext = 'so'
     so_prefixes = ['lib', '']
     



More information about the Pypy-commit mailing list