1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

SCons: Do not define TYPED_METHOD_BIND on Linux/clang

It's now only needed for MSVC.
This commit is contained in:
Rémi Verschelde
2020-11-25 19:27:21 +01:00
parent fc28de64c4
commit 09f3053450
2 changed files with 0 additions and 2 deletions

View File

@@ -129,7 +129,6 @@ def configure(env):
if "clang++" not in os.path.basename(env["CXX"]):
env["CC"] = "clang"
env["CXX"] = "clang++"
env.Append(CPPDEFINES=["TYPED_METHOD_BIND"])
env.extra_suffix = ".llvm" + env.extra_suffix
if env["use_lld"]: