debug strip

This commit is contained in:
zeppi 2022-12-09 19:11:00 -05:00
parent 0bbb913b8d
commit e532ea7927
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View file

@ -19,3 +19,4 @@ p4a/pythonforandroid/bootstraps/lbry/build/templates/google-services.json
p4a/*.apk
p4a/*.aar
venv

View file

@ -371,6 +371,7 @@ class Bootstrap:
env = arch.get_env()
tokens = shlex.split(env['STRIP'])
strip = sh.Command(tokens[0])
logger.info(f'Strip Env {env["STRIP"]} strip {strip} env {env}')
if len(tokens) > 1:
strip = strip.bake(tokens[1:])