[pypy-svn] r55362 - pypy/branch/gc+thread/pypy/config

arigo at codespeak.net arigo at codespeak.net
Wed May 28 19:19:10 CEST 2008


Author: arigo
Date: Wed May 28 19:19:09 2008
New Revision: 55362

Modified:
   pypy/branch/gc+thread/pypy/config/translationoption.py
Log:
Threads only work with the regular shadowstack gcrootfinder.


Modified: pypy/branch/gc+thread/pypy/config/translationoption.py
==============================================================================
--- pypy/branch/gc+thread/pypy/config/translationoption.py	(original)
+++ pypy/branch/gc+thread/pypy/config/translationoption.py	Wed May 28 19:19:09 2008
@@ -71,9 +71,11 @@
                  requires={
                      "shadowstack": [("translation.gctransformer", "framework")],
                      "llvmgc": [("translation.gctransformer", "framework"),
-                                ("translation.backend", "llvm")],
+                                ("translation.backend", "llvm"),
+                                ("translation.thread", False)],
                      "asmgcc": [("translation.gctransformer", "framework"),
-                                ("translation.backend", "c")],
+                                ("translation.backend", "c"),
+                                ("translation.thread", False)],
                     },
                  suggests={
                      "shadowstack": [("translation.gc", "generation")],



More information about the Pypy-commit mailing list