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

mwh at codespeak.net mwh at codespeak.net
Fri Jun 22 11:14:14 CEST 2007


Author: mwh
Date: Fri Jun 22 11:14:13 2007
New Revision: 44418

Modified:
   pypy/dist/pypy/translator/llvm/gc.py
Log:
surely everyone who builds pypy-llvm has this in their wcs already?
it's been in the pypytester tree on tuatara for ages anyway.


Modified: pypy/dist/pypy/translator/llvm/gc.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/gc.py	(original)
+++ pypy/dist/pypy/translator/llvm/gc.py	Fri Jun 22 11:14:13 2007
@@ -116,7 +116,7 @@
     #    """ factory """
         if gcpolicy == 'boehm':
             # XXX would be nice to localise this sort of thing?
-            assert have_boehm(), 'warning: Boehm GC libary not found in /usr/lib'
+            #assert have_boehm(), 'warning: Boehm GC libary not found in /usr/lib'
             gcpolicy = BoehmGcPolicy(db)
         elif gcpolicy == 'ref':
             gcpolicy = RefcountingGcPolicy(db)



More information about the Pypy-commit mailing list