diff options
-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 |