Browse Source

Merge pull request #80482 from akien-mga/scons-msvc-disable-incremental-linking

SCons: Disable misbehaving MSVC incremental linking
Rémi Verschelde 2 years ago
parent
commit
478b80310c
1 changed files with 3 additions and 0 deletions
  1. 3 0
      platform/windows/detect.py

+ 3 - 0
platform/windows/detect.py

@@ -355,6 +355,9 @@ def configure_msvc(env, vcvars_msvc_config):
         else:
             env.AppendUnique(CCFLAGS=["/MD"])
 
+    # MSVC incremental linking is broken and _increases_ link time (GH-77968).
+    env.Append(LINKFLAGS=["/INCREMENTAL:NO"])
+
     if env["arch"] == "x86_32":
         env["x86_libtheora_opt_vc"] = True