summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/godotcpp.py7
-rw-r--r--tools/web.py5
2 files changed, 10 insertions, 2 deletions
diff --git a/tools/godotcpp.py b/tools/godotcpp.py
index 13a57e9..9a8d328 100644
--- a/tools/godotcpp.py
+++ b/tools/godotcpp.py
@@ -266,6 +266,8 @@ def options(opts, env):
)
)
+ opts.Add(BoolVariable(key="threads", help="Enable threading support", default=env.get("threads", True)))
+
# compiledb
opts.Add(
BoolVariable(
@@ -393,6 +395,9 @@ def generate(env):
tool.generate(env)
+ if env["threads"]:
+ env.Append(CPPDEFINES=["THREADS_ENABLED"])
+
if env.use_hot_reload:
env.Append(CPPDEFINES=["HOT_RELOAD_ENABLED"])
@@ -436,6 +441,8 @@ def generate(env):
suffix += "." + env["arch"]
if env["ios_simulator"]:
suffix += ".simulator"
+ if not env["threads"]:
+ suffix += ".nothreads"
env["suffix"] = suffix # Exposed when included from another project
env["OBJSUFFIX"] = suffix + env["OBJSUFFIX"]
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"])