Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/test_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import clang_native
import common
import jsrun
from common import copy_asset, read_binary, read_file, test_file
from common import compiler_for, copy_asset, read_binary, read_file, test_file
from decorators import needs_make, parameterized

from tools import utils
Expand Down Expand Up @@ -262,7 +262,7 @@ def build(self, parent, filename, shared_args, emcc_args, native_args, native_ex
final = final.replace('.cpp', '')
utils.delete_file(final)
cmd = [
EMCC, filename,
compiler_for(filename), filename,
OPTIMIZATIONS,
'-sINITIAL_MEMORY=256MB',
'-sENVIRONMENT=node,shell',
Expand Down
Loading