aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-09 21:25:52 -0700
committeralon@honor <none@none>2010-09-09 21:25:52 -0700
commitaa7724802fe2aa9f45af9e535ec1cde9e8596c0d (patch)
treea763772de210412f00494cbc2a05cb2abd670b30
parent5bc458f7a3675ea2f36c71e4456fc1948526cae7 (diff)
comments
-rw-r--r--README2
-rw-r--r--tests/settings.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/README b/README
index eb8c1fa3..16423a34 100644
--- a/README
+++ b/README
@@ -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