diff options
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=[] |