diff options
author | Alon Zakai <azakai@mozilla.com> | 2010-09-20 09:02:11 -0700 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2010-09-20 09:02:11 -0700 |
commit | ac2b1c6606bcae0e226074cec36a290e0658e681 (patch) | |
tree | 5fc2b45b51f62e34810ba053677afab63882c3aa /tests/settings.py | |
parent | 9b369c6e57ad1f7a5f47c0198573c89aa9255d22 (diff) |
fixes for clang, including support for phi; all tests pass, but optimizer and relooper broken (on clang)
Diffstat (limited to 'tests/settings.py')
-rw-r--r-- | tests/settings.py | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/tests/settings.py b/tests/settings.py index f15b8ec5..513db6bf 100644 --- a/tests/settings.py +++ b/tests/settings.py @@ -1,8 +1,18 @@ DEBUG=False TEMP_DIR='/dev/shm' -LLVM_GCC=os.path.expanduser('~/Dev/llvm/llvm-gcc-27/cbuild/bin/bin/llvm-g++') -LLVM_DIS=os.path.expanduser('~/Dev/llvm/llvm-27/cbuild/bin/llvm-dis') -SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/m-c/js/src/js') + +CLANG=os.path.expanduser('~/Dev/llvm-2.7/cbuild/bin/clang++') +LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-2.7/cbuild/install/bin/llvm-g++') + +#COMPILER=LLVM_GCC +COMPILER=CLANG + +COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now - + # various errors on 64bit compilation + +LLVM_DIS=os.path.expanduser('~/Dev/llvm-2.7/cbuild/bin/llvm-dis') + +SPIDERMONKEY_ENGINE=os.path.expanduser('~/Dev/m-c-ff/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 @@ -12,5 +22,6 @@ PARSER_ENGINE=V8_ENGINE JS_ENGINE=SPIDERMONKEY_ENGINE #JS_ENGINE=V8_ENGINE -JS_ENGINE_OPTS=[]#['-j'] + +JS_ENGINE_OPTS=[] |