blob: ebc540a2ae81db59e91977af1c38ecf9108df3a2 [file] [log] [blame]
Alexander Shaposhnikov85ea2de2019-06-07 22:03:02 +00001llvm-lipo - LLVM tool for manipulating universal binaries
2=========================================================
3
4SYNOPSIS
5--------
6
7:program:`llvm-lipo` [*filenames...*] [*options*]
8
9DESCRIPTION
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
13COMMANDS
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 Meenai8f4973f2019-06-12 17:37:01 +000030.. 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 Shaposhnikov85ea2de2019-06-07 22:03:02 +000036BUGS
37----
38
39To report bugs, please visit <http://llvm.org/bugs/>.