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
No known key found for this signature in database
GPG Key ID: C3336907360768E1
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"]:

View File

@ -94,7 +94,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_coverage"]: