From cac2259bd70938b36531137e09f8fc3e672908c8 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 8 Mar 2023 14:16:32 -0800 Subject: [PATCH] Fix typo from #18917 (#18922) --- emcc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emcc.py b/emcc.py index 28cd5249ea651..5648d41431293 100755 --- a/emcc.py +++ b/emcc.py @@ -2405,7 +2405,7 @@ def phase_linker_setup(options, state, newargs): settings.DEFAULT_LIBRARY_FUNCS_TO_INCLUDE += ['$runtimeKeepalivePush'] else: if settings.PROXY_TO_PTHREAD: - exit_with_error('-sPROXY_TO_PTHREAD requires -pthread work!') + exit_with_error('-sPROXY_TO_PTHREAD requires -pthread to work!') settings.JS_LIBRARIES.append((0, 'library_pthread_stub.js')) # TODO: Move this into the library JS file once it becomes possible.