python/build/autotools.py: use toolchain.arflags

This commit is contained in:
Max Kellermann
2023-03-06 13:25:43 +01:00
parent 10aec174d5
commit b09a54b2c2
3 changed files with 3 additions and 0 deletions
android
python/build
win32

@ -45,6 +45,7 @@ class AutotoolsProject(MakeProject):
'LDFLAGS=' + toolchain.ldflags + ' ' + self.ldflags,
'LIBS=' + toolchain.libs + ' ' + self.libs,
'AR=' + toolchain.ar,
'ARFLAGS=' + toolchain.arflags,
'RANLIB=' + toolchain.ranlib,
'STRIP=' + toolchain.strip,
'--host=' + toolchain.arch,