summaryrefslogtreecommitdiffstats
path: root/methods.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2021-07-15 17:11:15 +0200
committerRémi Verschelde <rverschelde@gmail.com>2021-08-06 12:12:37 +0200
commit34421683eb4075402b045f930bbe69f472d1746b (patch)
tree83ba92210601724c00fadfac9f64905b4279d4e3 /methods.py
parent802810c371a1b0952a3d830e2f5488010f5102b4 (diff)
downloadredot-engine-34421683eb4075402b045f930bbe69f472d1746b.tar.gz
SCons: Add method to detect Emscripten and use it for warnings config
Emscripten is LLVM-based so we want to follow the same logic. But we can't just put it as a match in `methods.using_clang()` as that would mess with the compiler version detection logic used to restrict old GCC and Clang releases.
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/methods.py b/methods.py
index 13851d8315..970bd10aa3 100644
--- a/methods.py
+++ b/methods.py
@@ -828,6 +828,10 @@ def using_clang(env):
return "clang" in os.path.basename(env["CC"])
+def using_emcc(env):
+ return "emcc" in os.path.basename(env["CC"])
+
+
def show_progress(env):
import sys
from SCons.Script import Progress, Command, AlwaysBuild