We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0d2680 commit b92b391Copy full SHA for b92b391
platform/windows/detect.py
@@ -214,6 +214,9 @@ def configure_msvc(env, manual_msvc_config):
214
else:
215
env.AppendUnique(CCFLAGS=["/MD"])
216
217
+ # MSVC incremental linking is broken and _increases_ link time (GH-77968).
218
+ env.Append(LINKFLAGS=["/INCREMENTAL:NO"])
219
+
220
env.AppendUnique(CCFLAGS=["/Gd", "/GR", "/nologo"])
221
env.AppendUnique(CCFLAGS=["/utf-8"]) # Force to use Unicode encoding.
222
env.AppendUnique(CXXFLAGS=["/TP"]) # assume all sources are C++
0 commit comments