88be952fc9
Now that we have a built-in stacktrace on a segfault it would be useful to have debug information on debug_release builds so that bugreports can include this information. Without this debug info we will still get function names in the backtrace but not file location. This commit will by default build all targets with minimal debug info and then strip the information into separate files. On MacOS this is a .dSYM file, on Linux/MingW this is a .debug file. MacOSX will automatically load a dSYM file if it exists in its debugger. On Linux/MingW we create a 'gnu debuglink' meaning that gdb and friends will automatically find the debug symbols if they exist. Existing workflow for developers does not change at all, except that we now create two instead of one build artifact by default. This commit also adds a 'debug_symbols' option to X11, MacOS, and MingW targets. The default is 'yes' which corresponds to -g1. The alternatives are 'no' (don't generate debug infos at all) or 'full' which runs with -g2. A target=debug build will now build with -g3.
22 lines
659 B
Python
22 lines
659 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
Import('env')
|
|
|
|
def make_debug(target, source, env):
|
|
os.system('objcopy --only-keep-debug %s %s.debug' % (target[0], target[0]))
|
|
os.system('strip --strip-debug --strip-unneeded %s' % (target[0]))
|
|
os.system('objcopy --add-gnu-debuglink=%s.debug %s' % (target[0], target[0]))
|
|
|
|
common_x11 = [
|
|
"context_gl_x11.cpp",
|
|
"crash_handler_x11.cpp",
|
|
"os_x11.cpp",
|
|
"key_mapping_x11.cpp",
|
|
"joypad_linux.cpp",
|
|
"power_x11.cpp",
|
|
]
|
|
|
|
binary = env.Program('#bin/godot', ['godot_x11.cpp'] + common_x11)
|
|
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
|
env.AddPostAction(binary, make_debug)
|