Rename the debug symbol files to .debugsymbols

Some users were confused by the '.debug' suffix for the symbols.
This commit is contained in:
Hein-Pieter van Braam 2017-12-16 13:54:14 +01:00
parent 9079be9e83
commit 05018582d7
2 changed files with 4 additions and 4 deletions

View file

@ -9,9 +9,9 @@ def make_debug_mingw(target, source, env):
mingw_prefix = env["mingw_prefix_32"]
else:
mingw_prefix = env["mingw_prefix_64"]
os.system(mingw_prefix + 'objcopy --only-keep-debug %s %s.debug' % (target[0], target[0]))
os.system(mingw_prefix + 'objcopy --only-keep-debug %s %s.debugsymbols' % (target[0], target[0]))
os.system(mingw_prefix + 'strip --strip-debug --strip-unneeded %s' % (target[0]))
os.system(mingw_prefix + 'objcopy --add-gnu-debuglink=%s.debug %s' % (target[0], target[0]))
os.system(mingw_prefix + 'objcopy --add-gnu-debuglink=%s.debugsymbols %s' % (target[0], target[0]))
common_win = [
"context_gl_win.cpp",

View file

@ -4,9 +4,9 @@ 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('objcopy --only-keep-debug %s %s.debugsymbols' % (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]))
os.system('objcopy --add-gnu-debuglink=%s.debugsymbols %s' % (target[0], target[0]))
common_x11 = [
"context_gl_x11.cpp",