diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-07-29 13:07:57 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-07-29 13:07:57 -0700 |
commit | df145aa4b2b8f04b3883ffb955dfd7e499da13f8 (patch) | |
tree | 0dfb60bfbe1337ffeef7a23b6823967f65533948 /tools/shared.py | |
parent | c1e16b134729a0e39beca4211a9bd9468ebb466b (diff) |
updates for latest spidermonkey trunk
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/shared.py b/tools/shared.py index 9ccc2105..0ee9a0ac 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -25,8 +25,8 @@ BINDINGS_GENERATOR = path_from_root('tools', 'bindings_generator.py') # Engine tweaks -if '-s' not in SPIDERMONKEY_ENGINE: - SPIDERMONKEY_ENGINE += ['-s'] # Strict mode in SpiderMonkey. With V8 we check that fallback to non-strict works too +if 'strict' not in str(SPIDERMONKEY_ENGINE): + SPIDERMONKEY_ENGINE += ['-e', "options('strict')"] # Strict mode in SpiderMonkey. With V8 we check that fallback to non-strict works too if 'gcparam' not in str(SPIDERMONKEY_ENGINE): SPIDERMONKEY_ENGINE += ['-e', "gcparam('maxBytes', 1024*1024*1024);"] # Our very large files need lots of gc heap |