Merge pull request #16092 from hpvb/make-separate-debug-symbols-opt-in
Make separate debug symbols opt-in
This commit is contained in:
commit
88aed259f9
6 changed files with 6 additions and 3 deletions
|
@ -23,6 +23,6 @@ files = [
|
||||||
|
|
||||||
prog = env.add_program('#bin/godot', files)
|
prog = env.add_program('#bin/godot', files)
|
||||||
|
|
||||||
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
|
||||||
env.AddPostAction(prog, make_debug)
|
env.AddPostAction(prog, make_debug)
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,7 @@ def get_opts():
|
||||||
return [
|
return [
|
||||||
('osxcross_sdk', 'OSXCross SDK version', 'darwin14'),
|
('osxcross_sdk', 'OSXCross SDK version', 'darwin14'),
|
||||||
EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')),
|
EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')),
|
||||||
|
BoolVariable('separate_debug_symbols', 'Create a separate file with the debug symbols', False),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -39,5 +39,5 @@ if env['vsproj']:
|
||||||
env.vs_srcs = env.vs_srcs + ["platform/windows/" + str(x)]
|
env.vs_srcs = env.vs_srcs + ["platform/windows/" + str(x)]
|
||||||
|
|
||||||
if not os.getenv("VCINSTALLDIR"):
|
if not os.getenv("VCINSTALLDIR"):
|
||||||
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
|
||||||
env.AddPostAction(prog, make_debug_mingw)
|
env.AddPostAction(prog, make_debug_mingw)
|
||||||
|
|
|
@ -69,6 +69,7 @@ def get_opts():
|
||||||
# Vista support dropped after EOL due to GH-10243
|
# Vista support dropped after EOL due to GH-10243
|
||||||
('target_win_version', 'Targeted Windows version, >= 0x0601 (Windows 7)', '0x0601'),
|
('target_win_version', 'Targeted Windows version, >= 0x0601 (Windows 7)', '0x0601'),
|
||||||
EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')),
|
EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')),
|
||||||
|
BoolVariable('separate_debug_symbols', 'Create a separate file with the debug symbols', False),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -19,5 +19,5 @@ common_x11 = [
|
||||||
|
|
||||||
prog = env.add_program('#bin/godot', ['godot_x11.cpp'] + common_x11)
|
prog = env.add_program('#bin/godot', ['godot_x11.cpp'] + common_x11)
|
||||||
|
|
||||||
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
|
||||||
env.AddPostAction(prog, make_debug)
|
env.AddPostAction(prog, make_debug)
|
||||||
|
|
|
@ -55,6 +55,7 @@ def get_opts():
|
||||||
BoolVariable('pulseaudio', 'Detect & use pulseaudio', True),
|
BoolVariable('pulseaudio', 'Detect & use pulseaudio', True),
|
||||||
BoolVariable('udev', 'Use udev for gamepad connection callbacks', False),
|
BoolVariable('udev', 'Use udev for gamepad connection callbacks', False),
|
||||||
EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')),
|
EnumVariable('debug_symbols', 'Add debug symbols to release version', 'yes', ('yes', 'no', 'full')),
|
||||||
|
BoolVariable('separate_debug_symbols', 'Create a separate file with the debug symbols', False),
|
||||||
BoolVariable('touch', 'Enable touch events', True),
|
BoolVariable('touch', 'Enable touch events', True),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue