debug strip
This commit is contained in:
parent
0bbb913b8d
commit
e532ea7927
2 changed files with 2 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -19,3 +19,4 @@ p4a/pythonforandroid/bootstraps/lbry/build/templates/google-services.json
|
||||||
|
|
||||||
p4a/*.apk
|
p4a/*.apk
|
||||||
p4a/*.aar
|
p4a/*.aar
|
||||||
|
venv
|
|
@ -371,6 +371,7 @@ class Bootstrap:
|
||||||
env = arch.get_env()
|
env = arch.get_env()
|
||||||
tokens = shlex.split(env['STRIP'])
|
tokens = shlex.split(env['STRIP'])
|
||||||
strip = sh.Command(tokens[0])
|
strip = sh.Command(tokens[0])
|
||||||
|
logger.info(f'Strip Env {env["STRIP"]} strip {strip} env {env}')
|
||||||
if len(tokens) > 1:
|
if len(tokens) > 1:
|
||||||
strip = strip.bake(tokens[1:])
|
strip = strip.bake(tokens[1:])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue