summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
authormax99x <max99x@gmail.com>2011-07-20 01:19:59 +0300
committermax99x <max99x@gmail.com>2011-07-20 04:39:44 +0300
commit08a7f5d20fb3d9c8089e482de03d3c22440e4151 (patch)
treec623b8af362d135eb6acfadf182694d0b33bc82d /settings.py
parentcc08f5f3f1c06ef3e1e32111d9ad7043e633f186 (diff)
Fixed various metadata parsing error and activated -g by default in settings and emmaken.
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings.py b/settings.py
index e91d07d2..31f115c2 100644
--- a/settings.py
+++ b/settings.py
@@ -9,9 +9,9 @@ LLVM_ROOT=os.path.expanduser('~/Dev/llvm-2.9/cbuild/bin')
LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-2.9/cbuild/install/bin/llvm-g++')
-COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now -
- # various errors on 64bit compilation
- # WARNING: '-g' here will generate llvm bitcode that lli will crash on!
+COMPILER_OPTS = ['-m32', '-g'] # Need to build as 32bit arch, for now -
+ # various errors on 64bit compilation
+ # WARNING: '-g' here will generate llvm bitcode that lli will crash on!
SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/tracemonkey/js/src/js'), '-m', '-j', '-p']
V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')]