diff options
author | kripken <alonzakai@gmail.com> | 2011-07-29 18:03:37 -0700 |
---|---|---|
committer | kripken <alonzakai@gmail.com> | 2011-07-29 18:03:37 -0700 |
commit | d49f169b48c3a1aa8d50b2b6deaf30b7037b5672 (patch) | |
tree | 8b265c8eb2d051b7d6f5775e6f9afd37417420a4 /settings.py | |
parent | dece1080e837ccddddac1187709cdd669329b1a1 (diff) | |
parent | 0e64105b7e8463ef65a2004d3b0d47a1aa61d98d (diff) |
Merge pull request #57 from max99x/master
Filesystem, unistd, and others
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings.py b/settings.py index 5079289f..9773aa1e 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/mozilla-central/js/src/js'), '-m', '-j', '-p'] V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')] |