summaryrefslogtreecommitdiff
path: root/platform/windows/SCsub
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2017-12-16 14:50:32 +0100
committerGitHub <noreply@github.com>2017-12-16 14:50:32 +0100
commit83b15561836447c622e8c961e0558a0d2c5cc728 (patch)
treeed410e4e9a815b0f9ec8d559e678bb144e46f91d /platform/windows/SCsub
parent1c18943e97940fa89dbc61ad3c733f29f65b9743 (diff)
parent05018582d796cbaaa516c2a729012352a2f4cb3f (diff)
Merge pull request #14734 from hpvb/rename-debug-symbols
Rename the debug symbol files to .debugsymbols
Diffstat (limited to 'platform/windows/SCsub')
-rw-r--r--platform/windows/SCsub4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/SCsub b/platform/windows/SCsub
index 5030f4b3e0..604896b0db 100644
--- a/platform/windows/SCsub
+++ b/platform/windows/SCsub
@@ -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",