[pypy-commit] pypy reverse-debugger: Force some more options to known-working values

arigo pypy.commits at gmail.com
Sat Jun 11 07:48:02 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: reverse-debugger
Changeset: r85099:eae582a6f933
Date: 2016-06-11 13:48 +0200
http://bitbucket.org/pypy/pypy/changeset/eae582a6f933/

Log:	Force some more options to known-working values

diff --git a/rpython/config/translationoption.py b/rpython/config/translationoption.py
--- a/rpython/config/translationoption.py
+++ b/rpython/config/translationoption.py
@@ -283,7 +283,9 @@
                default=False, cmdline='--revdb',
                requires=[('translation.split_gc_address_space', True),
                          ('translation.jit', False),
-                         ('translation.gc', 'boehm')]),
+                         ('translation.gc', 'boehm'),
+                         ('translation.thread', False),
+                         ('translation.continuation', False)]),
 ])
 
 def get_combined_translation_config(other_optdescr=None,


More information about the pypy-commit mailing list