kivy-ios/tools/biglink
Kjell Wooding b35556b379 increase minapi, remove armv7 (32-bit arm),
link to arm64 by default and use new-style linker flags
2019-01-12 21:12:30 -05:00

24 lines
708 B
Python
Executable file

#!/usr/bin/env python
import os
import sys
import subprocess
sofiles = []
for dir in sys.argv[2:]:
for fn in os.listdir(dir):
if fn.endswith(".so"):
fn = os.path.join(dir, fn)
if os.path.exists(fn + ".o") and os.path.exists(fn + ".libs"):
sofiles.append(fn)
args = [] # The raw argument list.
for fn in sofiles:
args.append(fn + ".o")
args.extend(open(fn + ".libs").read().split(" "))
unique_args = ' '.join(x for x in sorted(set(args)) if x.endswith('.so.o'))
print('Biglink create %s library' % sys.argv[1])
cmd = "ar -q %s %s" % (sys.argv[1], unique_args)
print('Binlinking: {}'.format(cmd))
subprocess.Popen(cmd, shell=True).communicate()