[pypy-svn] r59264 - pypy/branch/cbuild-refactor/pypy/translator/platform

fijal at codespeak.net fijal at codespeak.net
Mon Oct 20 13:32:51 CEST 2008


Author: fijal
Date: Mon Oct 20 13:32:50 2008
New Revision: 59264

Modified:
   pypy/branch/cbuild-refactor/pypy/translator/platform/darwin.py
   pypy/branch/cbuild-refactor/pypy/translator/platform/posix.py
Log:
another missing piece


Modified: pypy/branch/cbuild-refactor/pypy/translator/platform/darwin.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/translator/platform/darwin.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/translator/platform/darwin.py	Mon Oct 20 13:32:50 2008
@@ -9,6 +9,8 @@
     cflags = ['-O3', '-fomit-frame-pointer']
     standalone_only = ['-mdynamic-no-pic']
     shared_only = ['-mmacosx-version-min=10.4']
+
+    so_ext = 'so'
     
     def __init__(self, cc=None):
         if cc is None:

Modified: pypy/branch/cbuild-refactor/pypy/translator/platform/posix.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/translator/platform/posix.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/translator/platform/posix.py	Mon Oct 20 13:32:50 2008
@@ -4,7 +4,7 @@
 
 from pypy.translator.platform import Platform, log, _run_subprocess
 from pypy.tool import autopath
-import py
+import py, os
 
 class BasePosix(Platform):
     exe_ext = ''



More information about the Pypy-commit mailing list