blob: 717a2b1cf86339c9a62045571a68793df946cee8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
DEBUG=False
TEMP_DIR='/dev/shm'
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/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
# used, see Mozilla bug 593659.
#PARSER_ENGINE=SPIDERMONKEY_ENGINE
PARSER_ENGINE=V8_ENGINE
JS_ENGINE=SPIDERMONKEY_ENGINE
#JS_ENGINE=V8_ENGINE
JS_ENGINE_OPTS=[]
|