2010-08-26 08:01:10 +04:00
|
|
|
TEMP_DIR='/dev/shm'
|
2010-09-20 20:02:11 +04:00
|
|
|
|
2010-10-08 09:50:33 +04:00
|
|
|
LLVM_ROOT=os.path.expanduser('~/Dev/llvm-2.8/cbuild/Release/bin') # Might not need 'Release'
|
2010-10-09 21:39:57 +04:00
|
|
|
#LLVM_ROOT=os.path.expanduser('~/Dev/llvm-2.7/cbuild/bin') # Might not need 'Release'
|
2010-10-08 09:50:33 +04:00
|
|
|
|
|
|
|
CLANG=os.path.expanduser(os.path.join(LLVM_ROOT, 'clang++'))
|
|
|
|
LLVM_GCC=os.path.expanduser('~/Dev/llvm-gcc-4.2-2.8.source/cbuild/install/bin/llvm-g++')
|
2010-09-26 07:26:16 +04:00
|
|
|
|
|
|
|
COMPILERS = {
|
2010-10-09 06:31:51 +04:00
|
|
|
'clang': {
|
|
|
|
'path': CLANG,
|
|
|
|
'quantum_size': 4, # See settings.js
|
|
|
|
},
|
2010-09-26 07:26:16 +04:00
|
|
|
'llvm_gcc': {
|
|
|
|
'path': LLVM_GCC,
|
|
|
|
'quantum_size': 1,
|
|
|
|
}
|
|
|
|
}
|
2010-09-20 20:02:11 +04:00
|
|
|
|
|
|
|
COMPILER_OPTS = ['-m32'] # Need to build as 32bit arch, for now -
|
|
|
|
# various errors on 64bit compilation
|
|
|
|
|
2010-10-08 09:50:33 +04:00
|
|
|
LLVM_DIS=os.path.expanduser(os.path.join(LLVM_ROOT, 'llvm-dis'))
|
2010-10-09 21:39:57 +04:00
|
|
|
LLVM_DIS_OPTS = []
|
|
|
|
if '2.8' in LLVM_ROOT:
|
|
|
|
LLVM_DIS_OPTS += ['-show-annotations']
|
2010-09-20 20:02:11 +04:00
|
|
|
|
2010-10-11 09:52:54 +04:00
|
|
|
SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/mozilla-central/js/src/js'), '-m'] # No |-j| due to Mozilla bug XXX
|
|
|
|
V8_ENGINE = [os.path.expanduser('~/Dev/v8/d8')]
|
2010-09-10 08:22:12 +04:00
|
|
|
|
2010-10-03 07:39:24 +04:00
|
|
|
# XXX Warning: Compiling the 'sauer' test in SpiderMonkey can lead to an extreme amount of memory being
|
2010-10-04 02:05:26 +04:00
|
|
|
# used, see Mozilla bug 593659. Possibly also some other tests as well.
|
2010-10-11 09:52:54 +04:00
|
|
|
#COMPILER_ENGINE=SPIDERMONKEY_ENGINE
|
|
|
|
COMPILER_ENGINE=V8_ENGINE
|
2010-08-26 08:01:10 +04:00
|
|
|
|
2010-10-03 10:29:02 +04:00
|
|
|
OUTPUT_TO_SCREEN = 0 # useful for debugging specific tests, or for subjectively seeing what parts are slow
|
|
|
|
|
2010-10-13 07:38:12 +04:00
|
|
|
CLOSURE_COMPILER = os.path.expanduser('~/Dev/closure-compiler/compiler.jar')
|
|
|
|
|