Merge pull request #21179 from elasota/vs-pdb
Support debug_symbols in VS optimized builds
This commit is contained in:
commit
54fcdabfd3
|
@ -172,6 +172,7 @@ def configure_msvc(env, manual_msvc_config):
|
|||
env.Append(CCFLAGS=['/O1'])
|
||||
env.Append(LINKFLAGS=['/SUBSYSTEM:WINDOWS'])
|
||||
env.Append(LINKFLAGS=['/ENTRY:mainCRTStartup'])
|
||||
env.Append(LINKFLAGS=['/OPT:REF'])
|
||||
|
||||
elif (env["target"] == "release_debug"):
|
||||
if (env["optimize"] == "speed"): #optimize for speed (default)
|
||||
|
@ -180,6 +181,7 @@ def configure_msvc(env, manual_msvc_config):
|
|||
env.Append(CCFLAGS=['/O1'])
|
||||
env.AppendUnique(CPPDEFINES = ['DEBUG_ENABLED'])
|
||||
env.Append(LINKFLAGS=['/SUBSYSTEM:CONSOLE'])
|
||||
env.Append(LINKFLAGS=['/OPT:REF'])
|
||||
|
||||
elif (env["target"] == "debug_release"):
|
||||
env.Append(CCFLAGS=['/Z7', '/Od'])
|
||||
|
@ -194,6 +196,10 @@ def configure_msvc(env, manual_msvc_config):
|
|||
env.Append(LINKFLAGS=['/SUBSYSTEM:CONSOLE'])
|
||||
env.Append(LINKFLAGS=['/DEBUG'])
|
||||
|
||||
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes"):
|
||||
env.AppendUnique(CCFLAGS=['/Z7'])
|
||||
env.AppendUnique(LINKFLAGS=['/DEBUG'])
|
||||
|
||||
## Compile/link flags
|
||||
|
||||
env.AppendUnique(CCFLAGS=['/MT', '/Gd', '/GR', '/nologo'])
|
||||
|
|
Loading…
Reference in New Issue