From ee69cdc1fe01f87aa8a46a53e7f1b7a992a51e99 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 29 Aug 2025 09:38:41 -0400 Subject: [PATCH] README-emscripten.md: Fixed cmake commmand line for enabling pthreads. Fixes #13190. --- docs/README-emscripten.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README-emscripten.md b/docs/README-emscripten.md index 54e7d2de50..aa6a1e3f30 100644 --- a/docs/README-emscripten.md +++ b/docs/README-emscripten.md @@ -239,7 +239,7 @@ If you want to build with thread support, something like this works: ```bash mkdir build cd build -emcmake cmake -DSDL_THREADS=ON .. +emcmake cmake -DSDL_PTHREADS=ON .. # you can also do `emcmake cmake -G Ninja ..` and then use `ninja` instead of this command. emmake make -j4 ```