Fix another missing 'python emcc' vs 'emcc' for Windows in other.test_emconfigure_js_o.

This commit is contained in:
Jukka Jylanki 2014-11-18 20:58:33 +02:00
Родитель 8a70c782a3
Коммит 1362b20588
1 изменённых файлов: 3 добавлений и 1 удалений

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