SCons: Disable misbehaving MSVC incremental linking
Fixes #77968.
(cherry picked from commit bc1aef88ee
)
This commit is contained in:
parent
ee009d26da
commit
32b7664371
|
@ -355,6 +355,9 @@ def configure_msvc(env, vcvars_msvc_config):
|
||||||
else:
|
else:
|
||||||
env.AppendUnique(CCFLAGS=["/MD"])
|
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":
|
if env["arch"] == "x86_32":
|
||||||
env["x86_libtheora_opt_vc"] = True
|
env["x86_libtheora_opt_vc"] = True
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue