aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-07-31 18:27:26 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-07-31 18:27:26 -0700
commit0c4cea3a11d4fbd53d318bc6f258946ecafe1948 (patch)
treec72d256ea9ef3e28fef32075c60101a7e3ebe1cf
parent038862da6000d55f461c3d27f5790f5b729d93e0 (diff)
use v8 as default compiler, sm trunk breaks on file reading apparently
-rw-r--r--settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings.py b/settings.py
index 5079289f..cf4fd28c 100644
--- a/settings.py
+++ b/settings.py
@@ -16,8 +16,8 @@ COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now -
SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/mozilla-central/js/src/js'), '-m', '-j', '-p']
V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')]
-COMPILER_ENGINE=SPIDERMONKEY_ENGINE
-#COMPILER_ENGINE=V8_ENGINE # XXX Warning: currently appears to be broken on v8 trunk, some arguments issue
+#COMPILER_ENGINE=SPIDERMONKEY_ENGINE # XXX Warning: currently appears to be broken on trunk, some file reading issue
+COMPILER_ENGINE=V8_ENGINE
JS_ENGINE=V8_ENGINE