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

pedronis at codespeak.net pedronis at codespeak.net
Sun Oct 19 16:24:23 CEST 2008


Author: pedronis
Date: Sun Oct 19 16:24:21 2008
New Revision: 59233

Modified:
   pypy/branch/cbuild-refactor/pypy/translator/platform/darwin.py
Log:
__thread is known not to be supported currently on darwin



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	Sun Oct 19 16:24:21 2008
@@ -24,3 +24,8 @@
 
     def library_dirs_for_libffi(self):
         return []
+
+    def check___thread(self):
+        # currently __thread is not supported by Darwin gccs
+        return False
+



More information about the Pypy-commit mailing list