print >> sys.stderr, ' '.join(command+print_args)
print >> sys.stderr, '\n'
- subprocess.call(args)
+# subprocess.call(args)
def extension(path):
return path.split(".")[-1]
return "objective-c"
elif extension == "mi":
return "objective-c-cpp-output"
- elif extension == "s" or extension == "o":
+ elif extension in [ "s", "o", "a", "so" ]:
return "skip"
else:
return "unknown"
# Arguments we currently ignore with one option.
if arg in ['-install_name', '-exported_symbols_list',
'-current_version', '-compatibility_version', '-init', '-e',
- '-seg1addr']:
+ '-seg1addr', '-bundle_loader', '-multiply_defined']:
i += 1
# Arguments we currently ignore with three options.