diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-04-30 19:06:51 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2024-04-30 19:19:36 +0200 |
commit | b0296bb562af0ff812b732586c06ae6b3f96ef84 (patch) | |
tree | ce8205464e138f2b9d591117ad552eddbdee9a7f /tools/web.py | |
parent | 54fe2f9891525891a52c47ffbd190d15c38cccab (diff) | |
download | redot-cpp-b0296bb562af0ff812b732586c06ae6b3f96ef84.tar.gz |
[SCons] Add option to build without threads
This is relevant for the Web platform, where builds with and without
threads are incompatible.
Diffstat (limited to 'tools/web.py')
-rw-r--r-- | tools/web.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/web.py b/tools/web.py index c7440bc..61fe96d 100644 --- a/tools/web.py +++ b/tools/web.py @@ -35,8 +35,9 @@ def generate(env): env["SHLIBSUFFIX"] = ".wasm" # Thread support (via SharedArrayBuffer). - env.Append(CCFLAGS=["-s", "USE_PTHREADS=1"]) - env.Append(LINKFLAGS=["-s", "USE_PTHREADS=1"]) + if env["threads"]: + env.Append(CCFLAGS=["-s", "USE_PTHREADS=1"]) + env.Append(LINKFLAGS=["-s", "USE_PTHREADS=1"]) # Build as side module (shared library). env.Append(CPPFLAGS=["-s", "SIDE_MODULE=1"]) |