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

afa at codespeak.net afa at codespeak.net
Tue Mar 24 15:55:54 CET 2009


Author: afa
Date: Tue Mar 24 15:55:51 2009
New Revision: 63281

Modified:
   pypy/trunk/pypy/translator/platform/windows.py
Log:
Translation with mingw: for now, return empty dirs for the libffi library.


Modified: pypy/trunk/pypy/translator/platform/windows.py
==============================================================================
--- pypy/trunk/pypy/translator/platform/windows.py	(original)
+++ pypy/trunk/pypy/translator/platform/windows.py	Tue Mar 24 15:55:51 2009
@@ -272,3 +272,10 @@
     def _args_for_shared(self, args):
         return ['-shared'] + args
 
+    def include_dirs_for_libffi(self):
+        return []
+
+    def library_dirs_for_libffi(self):
+        return []
+
+



More information about the Pypy-commit mailing list