kivy-ios/tools/liblink

85 lines
1.5 KiB
Plaintext
Raw Normal View History

2011-12-05 10:09:35 +01:00
#!/usr/bin/env python
import sys
import subprocess
from os import environ
2011-12-05 10:09:35 +01:00
libs = [ ]
objects = [ ]
output = None
i = 1
while i < len(sys.argv):
opt = sys.argv[i]
i += 1
if opt == "-o":
output = sys.argv[i]
i += 1
continue
if opt.startswith("-l") or opt.startswith("-L"):
libs.append(opt)
continue
if opt in ("-r", "-pipe", "-no-cpp-precomp"):
2011-12-05 10:09:35 +01:00
continue
if opt in ("--sysroot", "-isysroot", "-framework", "-undefined",
"-macosx_version_min"):
i += 1
continue
if opt.startswith("-I"):
continue
if opt.startswith("-m"):
continue
if opt.startswith("-f"):
continue
if opt.startswith("-O"):
continue
if opt.startswith("-g"):
continue
if opt.startswith("-D"):
continue
if opt.startswith("-"):
print sys.argv
print "Unknown option: ", opt
sys.exit(1)
2011-12-06 10:49:14 +01:00
if not opt.endswith('.o'):
continue
2011-12-05 10:09:35 +01:00
objects.append(opt)
f = file(output, "w")
f.close()
f = file(output + ".libs", "w")
f.write(" ".join(libs))
f.close()
2011-12-06 10:49:14 +01:00
print 'Liblink redirect linking with', objects
subprocess.call([
'%s/usr/bin/ld' % environ.get('DEVROOT'), '-r',
'-o', output + '.o', '-arch', 'armv7'] + objects)
'''
2011-12-06 10:49:14 +01:00
subprocess.call([
"/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2",
"-isysroot", environ.get('IOSSDKROOT'),
"-r", "-march=armv7", "-mcpu=arm176jzf", "-mcpu=cortex-a8", "-o", output + ".o" ] + objects)
'''
2011-12-05 10:09:35 +01:00