summaryrefslogtreecommitdiffstats
path: root/tools/windows.py
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2023-10-22 10:06:34 -0500
committerGitHub <noreply@github.com>2023-10-22 10:06:34 -0500
commit379ce2b5e5dd5d15bf0a633f86f60686dee35176 (patch)
treeedc6f759871b75909539b829a809dfc7b89b93d2 /tools/windows.py
parent0a6a19e33bb75d9f6f23adf16b4e695d009b0fc6 (diff)
parentbf1c03ab5f079d0931cf4390e7435a20cfaacfbd (diff)
downloadredot-cpp-379ce2b5e5dd5d15bf0a633f86f60686dee35176.tar.gz
Merge pull request #1216 from akien-mga/scons-disable-exception-handling
SCons: Disable C++ exception handling by default
Diffstat (limited to 'tools/windows.py')
-rw-r--r--tools/windows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/windows.py b/tools/windows.py
index e156aef..d5a729c 100644
--- a/tools/windows.py
+++ b/tools/windows.py
@@ -31,7 +31,7 @@ def generate(env):
env.Tool("mslink")
env.Append(CPPDEFINES=["TYPED_METHOD_BIND", "NOMINMAX"])
- env.Append(CCFLAGS=["/EHsc", "/utf-8"])
+ env.Append(CCFLAGS=["/utf-8"])
env.Append(LINKFLAGS=["/WX"])
if env["use_clang_cl"]: