SCons: Disable misbehaving MSVC incremental linking

Fixes #77968.

(cherry picked from commit bc1aef88ee)
This commit is contained in:
Rémi Verschelde 2023-08-10 14:04:09 +02:00 committed by Yuri Sizov
parent ee009d26da
commit 32b7664371
1 changed files with 3 additions and 0 deletions

View File

@ -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