Abort compilation if PROXY_TO_WORKER=1 is attempted with USE_PTHREADS=1.

This commit is contained in:
Jukka Jylänki 2015-05-27 13:42:52 +03:00
Родитель ccafa0a39d
Коммит c223827533
1 изменённых файлов: 4 добавлений и 0 удалений

4
emcc
Просмотреть файл

@ -745,6 +745,10 @@ try:
else:
js_libraries.append(shared.path_from_root('src', 'library_pthread_stub.js'))
if pthreads and 'PROXY_TO_WORKER=1' in settings_changes:
logging.error('-s PROXY_TO_WORKER=1 is not yet supported with -s USE_PTHREADS=1!')
exit(1)
has_source_inputs = False
has_header_inputs = False
lib_dirs = [shared.path_from_root('system', 'local', 'lib'),