Fix another missing 'python emcc' vs 'emcc' for Windows in other.test_emconfigure_js_o.
This commit is contained in:
Родитель
8a70c782a3
Коммит
1362b20588
4
emcc
4
emcc
|
@ -229,7 +229,9 @@ if CONFIGURE_CONFIG or CMAKE_CONFIG:
|
|||
yield el
|
||||
idx += 1
|
||||
|
||||
cmd = [compiler] + list(filter_emscripten_options(sys.argv[1:]))
|
||||
if compiler == shared.EMCC: compiler = [shared.PYTHON, shared.EMCC]
|
||||
else: compiler = [compiler]
|
||||
cmd = compiler + list(filter_emscripten_options(sys.argv[1:]))
|
||||
if not use_js: cmd += shared.EMSDK_OPTS + ['-D__EMSCRIPTEN__', '-DEMSCRIPTEN']
|
||||
if use_js: cmd += ['-s', 'ERROR_ON_UNDEFINED_SYMBOLS=1'] # configure tests should fail when an undefined symbol exists
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче