diff options
author | alon@honor <none@none> | 2010-09-09 21:25:52 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-09 21:25:52 -0700 |
commit | aa7724802fe2aa9f45af9e535ec1cde9e8596c0d (patch) | |
tree | a763772de210412f00494cbc2a05cb2abd670b30 | |
parent | 5bc458f7a3675ea2f36c71e4456fc1948526cae7 (diff) |
comments
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | tests/settings.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ Emscripten is an LLVM-to-JavaScript compiler. It takes LLVM bitcode - which can be generated from C/C++, using llvm-gcc or clang, or any other language that can be converted into LLVM - and compiles that into JavaScript, which can be run on the web (or anywhere else JavaScript can run). -See LICENSE.txt for copyright and redistribution. +See LICENSE.txt for copyright, redistribution and warranty info. See http://code.google.com/p/emscripten/ for project info, getting started, FAQ, etc. diff --git a/tests/settings.py b/tests/settings.py index d4834faf..666e20f5 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -5,6 +5,8 @@ LLVM_DIS=os.path.expanduser('~/Dev/llvm/llvm-27/cbuild/bin/llvm-dis') SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/tracemonkey/js/src/js') V8_ENGINE=os.path.expanduser('~/Dev/v8/d8') +# XXX Warning: Running the 'sauer' test in SpiderMonkey can lead to an extreme amount of memory being +# used, see Mozilla bug 593659. #PARSER_ENGINE=SPIDERMONKEY_ENGINE PARSER_ENGINE=V8_ENGINE |