We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 09cbe05 + becf5d7 commit 63af934Copy full SHA for 63af934
platform/linuxbsd/platform_linuxbsd_builders.py
@@ -5,6 +5,6 @@
5
6
def make_debug_linuxbsd(target, source, env):
7
dst = str(target[0])
8
- os.system("objcopy --only-keep-debug {0} {0}.debugsymbols".format(dst))
9
- os.system("strip --strip-debug --strip-unneeded {0}".format(dst))
10
- os.system("objcopy --add-gnu-debuglink={0}.debugsymbols {0}".format(dst))
+ os.system('objcopy --only-keep-debug "{0}" "{0}.debugsymbols"'.format(dst))
+ os.system('strip --strip-debug --strip-unneeded "{0}"'.format(dst))
+ os.system('objcopy --add-gnu-debuglink="{0}.debugsymbols" "{0}"'.format(dst))
0 commit comments