mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
wscript: add an option to not strip binaries
This commit is contained in:
parent
67c6cfce71
commit
43575b485d
@ -9,6 +9,11 @@ Strip executables upon installation
|
|||||||
import shutil, os
|
import shutil, os
|
||||||
from waflib import Build, Utils, Context, Errors, Logs
|
from waflib import Build, Utils, Context, Errors, Logs
|
||||||
|
|
||||||
|
def options(opt):
|
||||||
|
grp = opt.option_groups['install/uninstall options']
|
||||||
|
grp.add_option('--no-strip', dest='no_strip', action='store_true', default=False,
|
||||||
|
help='don\'t strip binaries. You must pass this flag to install command(default: False)')
|
||||||
|
|
||||||
def configure(conf):
|
def configure(conf):
|
||||||
if conf.env.DEST_BINFMT in ['elf', 'mac-o']:
|
if conf.env.DEST_BINFMT in ['elf', 'mac-o']:
|
||||||
conf.find_program('strip')
|
conf.find_program('strip')
|
||||||
@ -18,8 +23,8 @@ def configure(conf):
|
|||||||
def copy_fun(self, src, tgt):
|
def copy_fun(self, src, tgt):
|
||||||
inst_copy_fun(self, src, tgt)
|
inst_copy_fun(self, src, tgt)
|
||||||
|
|
||||||
if self.env.KEEP_DEBUG_INFO:
|
if self.generator.bld.options.no_strip:
|
||||||
return # don't strip debug information in debug mode
|
return
|
||||||
|
|
||||||
if getattr(self.generator, 'link_task', None) and self.generator.link_task.outputs[0] in self.inputs:
|
if getattr(self.generator, 'link_task', None) and self.generator.link_task.outputs[0] in self.inputs:
|
||||||
cmd = self.env.STRIP + self.env.STRIPFLAGS + [tgt]
|
cmd = self.env.STRIP + self.env.STRIPFLAGS + [tgt]
|
||||||
|
2
wscript
2
wscript
@ -60,7 +60,7 @@ def options(opt):
|
|||||||
|
|
||||||
opt.add_subproject(subdirs())
|
opt.add_subproject(subdirs())
|
||||||
|
|
||||||
opt.load('xcompile compiler_cxx compiler_c sdl2 clang_compilation_database')
|
opt.load('xcompile compiler_cxx compiler_c sdl2 clang_compilation_database strip_on_install')
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
opt.load('msvc msdev msvs')
|
opt.load('msvc msdev msvs')
|
||||||
opt.load('reconfigure')
|
opt.load('reconfigure')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user