@@ -67,7 +67,6 @@ def build(self, parent, filename, args, shared_args, emcc_args, native_args, nat
67
67
print >> sys .stderr , "Building native executable with command '%s' failed with a return code %d!" % (' ' .join ([compiler , '-O2' , filename , '-o' , filename + '.native' ]), process .returncode )
68
68
print "Output: " + output [0 ]
69
69
else :
70
- print '(using clang)'
71
70
shutil .copyfile (native_exec , filename + '.native' )
72
71
shutil .copymode (native_exec , filename + '.native' )
73
72
@@ -123,14 +122,13 @@ def run(self, args):
123
122
benchmarkers = [
124
123
#NativeBenchmarker('clang', CLANG_CC, CLANG),
125
124
NativeBenchmarker ('clang-3.2' , os .path .join (LLVM_3_2 , 'clang' ), os .path .join (LLVM_3_2 , 'clang++' )),
126
- NativeBenchmarker ('clang-3.3' , os .path .join (LLVM_3_3 , 'clang' ), os .path .join (LLVM_3_3 , 'clang++' )),
127
- NativeBenchmarker ('clang-3.4' , os .path .join (LLVM_3_4 , 'clang' ), os .path .join (LLVM_3_4 , 'clang++' )),
125
+ # NativeBenchmarker('clang-3.3', os.path.join(LLVM_3_3, 'clang'), os.path.join(LLVM_3_3, 'clang++')),
126
+ # NativeBenchmarker('clang-3.4', os.path.join(LLVM_3_4, 'clang'), os.path.join(LLVM_3_4, 'clang++')),
128
127
#NativeBenchmarker('gcc', 'gcc', 'g++'),
129
- #JSBenchmarker('sm-f32', SPIDERMONKEY_ENGINE, ['-s', 'PRECISE_F32=2']),
130
- JSBenchmarker ('sm-f32-3.2' , SPIDERMONKEY_ENGINE , ['-s' , 'PRECISE_F32=2' ], env = { 'LLVM' : LLVM_3_2 }),
131
- JSBenchmarker ('sm-f32-3.3' , SPIDERMONKEY_ENGINE , ['-s' , 'PRECISE_F32=2' ], env = { 'LLVM' : LLVM_3_3 }),
132
- JSBenchmarker ('sm-f32-3.4' , SPIDERMONKEY_ENGINE , ['-s' , 'PRECISE_F32=2' ], env = { 'LLVM' : LLVM_3_4 }),
133
- #JSBenchmarker('sm', SPIDERMONKEY_ENGINE),
128
+ JSBenchmarker ('sm-f32' , SPIDERMONKEY_ENGINE , ['-s' , 'PRECISE_F32=2' ]),
129
+ #JSBenchmarker('sm-f32-3.2', SPIDERMONKEY_ENGINE, ['-s', 'PRECISE_F32=2'], env={ 'LLVM': LLVM_3_2 }),
130
+ #JSBenchmarker('sm-f32-3.3', SPIDERMONKEY_ENGINE, ['-s', 'PRECISE_F32=2'], env={ 'LLVM': LLVM_3_3 }),
131
+ #JSBenchmarker('sm-f32-3.4', SPIDERMONKEY_ENGINE, ['-s', 'PRECISE_F32=2'], env={ 'LLVM': LLVM_3_4 }),
134
132
#JSBenchmarker('sm-fc', SPIDERMONKEY_ENGINE, env={ 'EMCC_FAST_COMPILER': '1' }),
135
133
#JSBenchmarker('sm-noasm', SPIDERMONKEY_ENGINE + ['--no-asmjs']),
136
134
#JSBenchmarker('sm-noasm-f32', SPIDERMONKEY_ENGINE + ['--no-asmjs'], ['-s', 'PRECISE_F32=2']),
0 commit comments