[pypy-svn] r18774 - pypy/dist/pypy/translator/llvm

rxe at codespeak.net rxe at codespeak.net
Wed Oct 19 20:32:36 CEST 2005


Author: rxe
Date: Wed Oct 19 20:32:34 2005
New Revision: 18774

Modified:
   pypy/dist/pypy/translator/llvm/gc.py
Log:
For some reason, after upgrading ubuntu, I need to include pthread when using
boehm gc.



Modified: pypy/dist/pypy/translator/llvm/gc.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/gc.py	(original)
+++ pypy/dist/pypy/translator/llvm/gc.py	Wed Oct 19 20:32:34 2005
@@ -56,7 +56,7 @@
         self.n_malloced = 0
 
     def gc_libraries(self):
-        return ['gc'] # xxx on windows?
+        return ['gc', 'pthread'] # XXX on windows?
 
     def declarations(self):
         return '''



More information about the Pypy-commit mailing list