[pypy-svn] r33379 - pypy/branch/even-more-config3/pypy/config

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Oct 17 17:04:22 CEST 2006


Author: cfbolz
Date: Tue Oct 17 17:04:21 2006
New Revision: 33379

Modified:
   pypy/branch/even-more-config3/pypy/config/pypyoption.py
Log:
llvm depends on boehm as a gc at the moment. that should change at one point.


Modified: pypy/branch/even-more-config3/pypy/config/pypyoption.py
==============================================================================
--- pypy/branch/even-more-config3/pypy/config/pypyoption.py	(original)
+++ pypy/branch/even-more-config3/pypy/config/pypyoption.py	Tue Oct 17 17:04:21 2006
@@ -113,7 +113,8 @@
                      ["c", "llvm", "cli", "js", "squeak", "cl"],
                      requires={
                          "c":      [("translation.type_system", "lltype")],
-                         "llvm":   [("translation.type_system", "lltype")],
+                         "llvm":   [("translation.type_system", "lltype"),
+                                    ("translation.gc", "boehm")],
                          "cli":    [("translation.type_system", "ootype")],
                          "js":     [("translation.type_system", "ootype")],
                          "squeak": [("translation.type_system", "ootype")],



More information about the Pypy-commit mailing list