Skip to content

Commit

Permalink
Add -msse to benchmark_sse1 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
juj committed Aug 15, 2015
1 parent d976442 commit 64b47af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/benchmark_sse1.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def path_from_root(*pathelems):

# Run emscripten build
out_file = os.path.join(temp_dir, 'benchmark_sse1_html.html')
cmd = [PYTHON, EMCC, path_from_root('tests', 'benchmark_sse1.cpp'), '-O3', '--emrun', '-s', 'TOTAL_MEMORY=536870912', '-o', out_file]
cmd = [PYTHON, EMCC, path_from_root('tests', 'benchmark_sse1.cpp'), '-O3', '-msse', '--emrun', '-s', 'TOTAL_MEMORY=536870912', '-o', out_file]
print 'Building Emscripten version of the benchmark:'
print ' '.join(cmd)
build = Popen(cmd)
Expand Down

0 comments on commit 64b47af

Please sign in to comment.