summaryrefslogtreecommitdiff
path: root/platform/x11/SCsub
blob: d0f77892efb745577af2b2dbcb39ccbd96db6c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

import os
Import('env')

def make_debug(target, source, env):
    os.system('objcopy --only-keep-debug {0} {0}.debugsymbols'.format(target[0]))
    os.system('strip --strip-debug --strip-unneeded {0}'.format(target[0]))
    os.system('objcopy --add-gnu-debuglink={0}.debugsymbols {0}'.format(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",
]

prog = env.add_program('#bin/godot', ['godot_x11.cpp'] + common_x11)

if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
    env.AddPostAction(prog, make_debug)