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

lucian at codespeak.net lucian at codespeak.net
Wed Mar 24 11:24:54 CET 2010


Author: lucian
Date: Wed Mar 24 11:24:53 2010
New Revision: 72697

Modified:
   pypy/trunk/pypy/translator/platform/darwin.py
Log:
Revert the change to .bundle and  revert the unintended revert of the addition of a library path.

Modified: pypy/trunk/pypy/translator/platform/darwin.py
==============================================================================
--- pypy/trunk/pypy/translator/platform/darwin.py	(original)
+++ pypy/trunk/pypy/translator/platform/darwin.py	Wed Mar 24 11:24:53 2010
@@ -10,7 +10,7 @@
     standalone_only = ['-mdynamic-no-pic']
     shared_only = []
 
-    so_ext = 'bundle'
+    so_ext = 'so'
     
     def __init__(self, cc=None):
         if cc is None:
@@ -25,7 +25,7 @@
         return ['/usr/include/ffi']
 
     def library_dirs_for_libffi(self):
-        return []
+        return ['/usr/lib']
 
     def check___thread(self):
         # currently __thread is not supported by Darwin gccs



More information about the Pypy-commit mailing list