Merge pull request #69294 from akien-mga/windows-msvc-link-debug-runtime
Windows: Link MSVC dynamic debug CRT for debug builds
This commit is contained in:
commit
e82d66f23b
|
@ -339,6 +339,10 @@ def configure_msvc(env, vcvars_msvc_config):
|
||||||
|
|
||||||
## Compile/link flags
|
## Compile/link flags
|
||||||
|
|
||||||
|
if env["optimize"] in ["debug", "none"]:
|
||||||
|
# Always use dynamic runtime, static debug CRT breaks thread_local.
|
||||||
|
env.AppendUnique(CCFLAGS=["/MDd"])
|
||||||
|
else:
|
||||||
if env["use_static_cpp"]:
|
if env["use_static_cpp"]:
|
||||||
env.AppendUnique(CCFLAGS=["/MT"])
|
env.AppendUnique(CCFLAGS=["/MT"])
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue