【Mac之常用Command】
1、ar - archive utility, be used to operate universery file.
2、otool - be used to analysis objective-c from Mach-O file.
3、libtool - creates either static archive libraries or dynamic shared libraries.
You can use the libtool
command to build a static archive library, and you can use the ar
command to manipulate individual modules in the library.
4、nm -
allows you to view the contents of an object file’s symbol table
5、ld - linker
6、dyld - dynamic linker
7、lipo - operate on universe file
8、compiler - a tool that translates from source code written in a high-level language into intermediate object files that contain machine binary code and data
9、compiler driver - /usr/bin/gcc
, contains support for compiling, assembling, and linking modules of source code from the C, C++, and Objective-C languages. The compiler driver calls several other tools that implement the actual compiling, assembling, and static linking functionality.