pub fn create_universal_macho<'a>(
    writer: &mut impl Write,
    binaries: impl Iterator<Item = &'a [u8]>
) -> Result<(), UniversalMachOError>
Expand description

Create a universal mach-o binary from existing mach-o binaries.

The binaries will be parsed as Mach-O.

Because the size of the individual Mach-O binaries must be written into a header, all content is buffered internally.