[pypy-svn] r33549 - pypy/branch/even-more-config3/pypy/config
cfbolz at codespeak.net
cfbolz at codespeak.net
Mon Oct 23 13:07:16 CEST 2006
Author: cfbolz
Date: Mon Oct 23 13:07:14 2006
New Revision: 33549
Modified:
pypy/branch/even-more-config3/pypy/config/pypyoption.py
Log:
llvm depends on the backend optimization raisingop2direct_call
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 Mon Oct 23 13:07:14 2006
@@ -117,7 +117,8 @@
requires={
"c": [("translation.type_system", "lltype")],
"llvm": [("translation.type_system", "lltype"),
- ("translation.gc", "boehm")],
+ ("translation.gc", "boehm"),
+ ("translation.backendopt.raisingop2direct_call", True)],
"cli": [("translation.type_system", "ootype")],
"js": [("translation.type_system", "ootype")],
"squeak": [("translation.type_system", "ootype")],
More information about the Pypy-commit
mailing list