Alexander Shaposhnikov | 85ea2de | 2019-06-07 22:03:02 +0000 | [diff] [blame] | 1 | llvm-lipo - LLVM tool for manipulating universal binaries |
| 2 | ========================================================= |
| 3 | |
| 4 | SYNOPSIS |
| 5 | -------- |
| 6 | |
| 7 | :program:`llvm-lipo` [*filenames...*] [*options*] |
| 8 | |
| 9 | DESCRIPTION |
| 10 | ----------- |
| 11 | :program:`llvm-lipo` can create universal binaries from Mach-O files, extract regular object files from universal binaries, and display architecture information about both universal and regular files. |
| 12 | |
| 13 | COMMANDS |
| 14 | -------- |
| 15 | :program:`llvm-lipo` supports the following mutually exclusive commands: |
| 16 | |
| 17 | .. option:: -help, -h |
| 18 | |
| 19 | Display usage information and exit. |
| 20 | |
| 21 | .. option:: -version |
| 22 | |
| 23 | Display the version of this program. |
| 24 | |
| 25 | .. option:: -verify_arch <architecture 1> [<architecture 2> ...] |
| 26 | |
| 27 | Take a single input file and verify the specified architectures are present in the file. |
| 28 | If so then exit with a status of 0 else exit with a status of 1. |
| 29 | |
Shoaib Meenai | 8f4973f | 2019-06-12 17:37:01 +0000 | [diff] [blame] | 30 | .. option:: -archs |
| 31 | |
| 32 | Take a single input file and display the architectures present in the file. |
| 33 | Each architecture is separated by a single whitespace. |
| 34 | Unknown architectures are displayed as unknown(CPUtype,CPUsubtype). |
| 35 | |
Alexander Shaposhnikov | 85ea2de | 2019-06-07 22:03:02 +0000 | [diff] [blame] | 36 | BUGS |
| 37 | ---- |
| 38 | |
| 39 | To report bugs, please visit <http://llvm.org/bugs/>. |