2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2017-09-13 17:32:24 +00:00
|
|
|
import os
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
2017-09-13 17:32:24 +00:00
|
|
|
def make_debug(target, source, env):
|
2017-12-16 12:54:14 +00:00
|
|
|
os.system('objcopy --only-keep-debug %s %s.debugsymbols' % (target[0], target[0]))
|
2017-09-13 17:32:24 +00:00
|
|
|
os.system('strip --strip-debug --strip-unneeded %s' % (target[0]))
|
2017-12-16 12:54:14 +00:00
|
|
|
os.system('objcopy --add-gnu-debuglink=%s.debugsymbols %s' % (target[0], target[0]))
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-08 01:01:49 +00:00
|
|
|
common_x11 = [
|
|
|
|
"context_gl_x11.cpp",
|
|
|
|
"crash_handler_x11.cpp",
|
|
|
|
"os_x11.cpp",
|
|
|
|
"key_mapping_x11.cpp",
|
|
|
|
"joypad_linux.cpp",
|
|
|
|
"power_x11.cpp",
|
2014-02-10 01:10:30 +00:00
|
|
|
]
|
|
|
|
|
2017-11-28 20:27:57 +00:00
|
|
|
prog = env.add_program('#bin/godot', ['godot_x11.cpp'] + common_x11)
|
2017-11-27 13:39:05 +00:00
|
|
|
|
2018-01-26 19:46:56 +00:00
|
|
|
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
|
2017-11-27 13:39:05 +00:00
|
|
|
env.AddPostAction(prog, make_debug)
|