diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-06-04 10:11:25 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-06-04 10:11:25 -0700 |
commit | fb83700d54ec3fbba744d583692ee132baa7774e (patch) | |
tree | 4662bf815c926acda1787b56c4f3ae55fff0abeb | |
parent | ced040e4801087a3faa72e45d7d54cce30c54a66 (diff) |
remove stackQuota for spidermonkey since no longer needed
-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 0ecc2bad..c172a322 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -23,8 +23,8 @@ LLVM_COMPILER=os.path.expanduser(os.path.join(LLVM_ROOT, 'llc')) 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 'stackQuota' not in str(SPIDERMONKEY_ENGINE): - SPIDERMONKEY_ENGINE += ['-e', "stackQuota(100000000000); ; gcparam('maxBytes', 1024*1024*1024);"] # Our very large files need lots of stack&gc +if 'gcparam' not in str(SPIDERMONKEY_ENGINE): + SPIDERMONKEY_ENGINE += ['-e', "gcparam('maxBytes', 1024*1024*1024);"] # Our very large files need lots of gc heap # Utilities |