|
@@ -64,7 +64,7 @@ def get_opts():
|
|
|
# XP support dropped after EOL due to missing API for IPv6 and other issues
|
|
|
# Vista support dropped after EOL due to GH-10243
|
|
|
("target_win_version", "Targeted Windows version, >= 0x0601 (Windows 7)", "0x0601"),
|
|
|
- EnumVariable("debug_symbols", "Add debugging symbols to release builds", "yes", ("yes", "no", "full")),
|
|
|
+ EnumVariable("debug_symbols", "Add debugging symbols to release/release_debug builds", "yes", ("yes", "no")),
|
|
|
EnumVariable("windows_subsystem", "Windows subsystem", "default", ("default", "console", "gui")),
|
|
|
BoolVariable("separate_debug_symbols", "Create a separate file containing debugging symbols", False),
|
|
|
("msvc_version", "MSVC version to use. Ignored if VCINSTALLDIR is set in shell env.", None),
|
|
@@ -209,7 +209,7 @@ def configure_msvc(env, manual_msvc_config):
|
|
|
env.AppendUnique(CPPDEFINES=["DEBUG_ENABLED"])
|
|
|
env.Append(LINKFLAGS=["/DEBUG"])
|
|
|
|
|
|
- if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
|
|
+ if env["debug_symbols"] == "yes":
|
|
|
env.AppendUnique(CCFLAGS=["/Z7"])
|
|
|
env.AppendUnique(LINKFLAGS=["/DEBUG"])
|
|
|
|
|
@@ -337,16 +337,12 @@ def configure_mingw(env):
|
|
|
env.Prepend(CCFLAGS=["-Os"])
|
|
|
|
|
|
if env["debug_symbols"] == "yes":
|
|
|
- env.Prepend(CCFLAGS=["-g1"])
|
|
|
- if env["debug_symbols"] == "full":
|
|
|
env.Prepend(CCFLAGS=["-g2"])
|
|
|
|
|
|
elif env["target"] == "release_debug":
|
|
|
env.Append(CCFLAGS=["-O2"])
|
|
|
env.Append(CPPDEFINES=["DEBUG_ENABLED"])
|
|
|
if env["debug_symbols"] == "yes":
|
|
|
- env.Prepend(CCFLAGS=["-g1"])
|
|
|
- if env["debug_symbols"] == "full":
|
|
|
env.Prepend(CCFLAGS=["-g2"])
|
|
|
if env["optimize"] == "speed": # optimize for speed (default)
|
|
|
env.Append(CCFLAGS=["-O2"])
|