2016-10-17 17:14:07 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
includes = sys.argv[1]
|
2016-10-17 17:14:07 +02:00
|
|
|
output_file = sys.argv[2]
|
2016-10-30 18:57:40 +01:00
|
|
|
input_file = sys.argv[3]
|
2016-10-17 17:14:07 +02:00
|
|
|
|
|
|
|
can_remove = {}
|
|
|
|
|
|
|
|
lipo_command = ''
|
|
|
|
|
|
|
|
exit_code = 1
|
|
|
|
|
|
|
|
for arch in ['32', '64']:
|
2016-10-30 18:44:57 +01:00
|
|
|
if arch == '32' and input_file.endswith('x86_64.asm'):
|
|
|
|
can_remove[arch] = False
|
|
|
|
else:
|
|
|
|
command = 'yasm ' + includes + ' -f macho' + arch + ' -D X86_' + arch + ' -o ' + output_file + '.' + arch + ' ' + input_file
|
|
|
|
print(command)
|
|
|
|
if os.system(command) == 0:
|
|
|
|
lipo_command += output_file + '.' + arch + ' '
|
|
|
|
can_remove[arch] = True
|
|
|
|
else:
|
|
|
|
can_remove[arch] = False
|
2016-10-17 17:14:07 +02:00
|
|
|
|
|
|
|
if lipo_command != '':
|
2016-10-30 18:44:57 +01:00
|
|
|
lipo_command = 'lipo -create ' + lipo_command + '-output ' + output_file
|
|
|
|
print(lipo_command)
|
|
|
|
if os.system(lipo_command) == 0:
|
|
|
|
exit_code = 0
|
2016-10-17 17:14:07 +02:00
|
|
|
|
|
|
|
for arch in ['32', '64']:
|
2016-10-30 18:44:57 +01:00
|
|
|
if can_remove[arch]:
|
|
|
|
os.remove(output_file + '.' + arch)
|
2016-10-17 17:14:07 +02:00
|
|
|
|
|
|
|
sys.exit(exit_code)
|