summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorMikael Hermansson <mikael@hermansson.io>2024-08-19 14:25:39 +0200
committerMikael Hermansson <mikael@hermansson.io>2024-08-19 14:44:09 +0200
commit807904d9515e9d2aaf16f6260945a6632689f1b9 (patch)
treec6e5bd0bf280c9382275e061e299f5a98b5c6bdf /SConstruct
parent7a4a6fbc039fefbccbb23a66285722ad20bf418a (diff)
downloadredot-engine-807904d9515e9d2aaf16f6260945a6632689f1b9.tar.gz
Enable standards conformance for MSVC
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 0ae8f1a387..599db4b8de 100644
--- a/SConstruct
+++ b/SConstruct
@@ -773,6 +773,10 @@ else:
# MSVC doesn't have clear C standard support, /std only covers C++.
# We apply it to CCFLAGS (both C and C++ code) in case it impacts C features.
env.Prepend(CCFLAGS=["/std:c++17"])
+ # MSVC is non-conforming with the C++ standard by default, so we enable more conformance.
+ # Note that this is still not complete conformance, as certain Windows-related headers
+ # don't compile under complete conformance.
+ env.Prepend(CCFLAGS=["/permissive-"])
# Disable exception handling. Godot doesn't use exceptions anywhere, and this
# saves around 20% of binary size and very significant build time (GH-80513).