Update armhf toolschain.

This commit is contained in:
Matthieu Gautier
2023-03-22 16:31:59 +01:00
parent bc3a73f26d
commit b8cd12a360
3 changed files with 24 additions and 11 deletions

View File

@ -44,3 +44,10 @@ class zlib(Dependency):
binary_path=pj(self.buildEnv.install_dir, 'bin'),
)
return ""
@property
def make_target(self):
if self.buildEnv.platformInfo.static:
return "static"
else:
return "shared"