I wonder what would be the difference when using:
lipo -create i386/libAwesome.a armv7/libAwesome.a -o fat/libAwesome.a
and
libtool -static i386/libAwesome.a armv7/libAwesome.a -o fat/libAwesome.a
I have the impression that lipo is more general, and it will simply stick two files from different architectures while libtool is specific for libraries, Is this true?
Under what cases I should prefer Lipo over Libtool?