lipo: add page (#6306)

pull/6374/head
chris 2021-08-15 17:46:07 +02:00 committed by GitHub
parent 3f45cf2683
commit ff3692c005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages/osx/lipo.md Normal file
View File

@ -0,0 +1,20 @@
# lipo
> Tool for handling Mach-O Universal Binaries.
> More information: <https://ss64.com/osx/lipo.html>.
- Create a universal file from two single-architecture files:
`lipo {{path/to/binary.x86_64}} {{path/to/binary.arm64e}} -create -output {{path/to/binary}}`
- List all architectures contained in a universal file:
`lipo {{path/to/binary}} -archs`
- Display detailed information about a universal file:
`lipo {{path/to/binary}} -detailed_info`
- Extract a single-architecture file from a universal file:
`lipo {{path/to/binary}} -thin {{arm64e}} -output {{path/to/binary.arm64e}}`