summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2022-07-09 15:24:32 +0100
committerKevin Smith <git@kismith.co.uk>2022-07-12 18:13:25 +0100
commitb038fe556bce0b102af01342e7597d2d606c0f42 (patch)
tree12233a9145dc6cca3e94a343249001bec5095316 /tools
parentbffedfed1eb297b697fa4d139ac9d03b5c9fabd6 (diff)
downloadredot-cpp-b038fe556bce0b102af01342e7597d2d606c0f42.tar.gz
Add clang-cl support
Visual C++ has a clang-based driver, available through the clang-cl wrapper (which provides the same interface as cl) - this generates objects binary-compatible with the default (traditional) driver, and can then be linked in the normal way. As such, this patch simply configures for MSVCC and then overwrites the cl compiler with clang-cl in the environment. Clang gives (subjectively) much more understandable compiler warnings and errors than MSVCC, which was my motivation for switching. Test-Information: Builds for me with VS2022, and my gdextension library builds and links.
Diffstat (limited to 'tools')
-rw-r--r--tools/windows.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/windows.py b/tools/windows.py
index b471aa0..62bc77d 100644
--- a/tools/windows.py
+++ b/tools/windows.py
@@ -8,6 +8,7 @@ from SCons.Variables import *
def options(opts):
opts.Add(BoolVariable("use_mingw", "Use the MinGW compiler instead of MSVC - only effective on Windows", False))
+ opts.Add(BoolVariable("use_clang_cl", "Use the clang driver instead of MSVC - only effective on Windows", False))
def exists(env):
@@ -29,6 +30,9 @@ def generate(env):
env.Append(CCFLAGS=["/Z7", "/Od", "/EHsc", "/D_DEBUG", "/MDd"])
elif env["target"] == "release":
env.Append(CCFLAGS=["/O2", "/EHsc", "/DNDEBUG", "/MD"])
+ if env["use_clang_cl"]:
+ env["CC"] = "clang-cl"
+ env["CXX"] = "clang-cl"
elif sys.platform == "win32" or sys.platform == "msys":
env["use_mingw"] = True