Intel® C++ Compiler 16.0 User and Reference Guide
Libraries are often created using a library manager such as xiar for Linux*/OS X* or lib for Windows. Given a list of objects, the library manager will insert the objects into a named library to be used in subsequent link steps.
Example |
---|
xiar cru user.a a.o b.o |
The above command creates a library named user.a containing the a.o and b.o objects.
If the objects have been created using [Q]ipo -c then the archive will not only contain a valid object, but the archive will also contain intermediate representation (IR) for that object file. For example, the following example will produce a.o and b.o that may be archived to produce a library containing both object code and IR for each source file.
Example |
---|
icc -ipo -c a.cpp b.cpp //Linux and OS X with EDG compiler icl -ipo -c a.cpp b.cpp //OS X with CLANG compiler |
The commands generate mock objects files, which when placed in archive will also be accompanied by a true object file.
Using xiar is the same as specifying xild -lib.
When using xilibtool, specify -static to generate static libraries, or specify dynamic to create dynamic libraries. For example, the following example command will create a static library named mylib.a that includes the a.o, b.o, and c.o objects.
Example |
---|
xilibtool -static -o mylib.a a.o b.o c.o |
Alternately, the following example command will create a dynamic library named mylib.dylib that includes the a.o, b.o, and c.o objects.
Example |
---|
xilibtool -dynamic -o mylib.dylib a.o b.o c.o |
Specifying xilibtool is the same as specifying xild -libtool.
Create libraries using xilib or xilink -lib to create libraries of IPO mock object files and link them on the command line.
For example, assume that you create three mock object files by using a command similar to the following:
Example |
---|
icl /c /Qipo a.cpp b.cpp c.cpp |
Further assume a.obj contains the main subprogram. You can enter commands similar to the following to create a library.
Example |
---|
xilib -out:main.lib b.obj c.obj or xilink -lib -out:main.lib b.obj c.obj |
You can link the library and the main program object file by entering a command similar to the following:
Example |
---|
xilink -out:result.exe a.obj main.lib |