Intel® C++ Compiler XE 13.1 User and Reference Guides
By default, the Intel® C++ Compiler links Intel® C++ libraries dynamically. The GNU*, Linux* OS, and OS X* system libraries are also linked dynamically.
|
Option |
Description |
|---|---|
|
-shared-intel |
Use the -shared-intel option to link Intel® C++ libraries dynamically (default). This has the advantage of reducing the size of the application binary, but it also requires the libraries to be on the application's target system. |
|
-shared |
The -shared option instructs the compiler to build a Dynamic Shared Object (DSO) instead of an executable. For more details, refer to the ld man page documentation. |
|
-fpic |
Use the -fpic option when building shared libraries. It is required for the compilation of each object file included in the shared library. |