Intel® C++ Compiler Classic Developer Guide and Reference

ID 767249
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

Manage Libraries

Manage Libraries on Linux and macOS

During compilation, the compiler reads the LIBRARY_PATH environment variable for static libraries it needs to link when building the executable. At runtime, the executable will link against dynamic libraries referenced in the LD_LIBRARY_PATH environment variable. Add the location of your static libraries to the LIBRARY_PATH environment variable so that they are available for linking during compilation.

For example, to compile file.cpp and link it with the library lib.a, located in the /libs directory:

  1. Add the directory /libs to LIBRARY_PATH from the command line with the export command:

    export LIBRARY_PATH=/libs:$LIBRARY_PATH

    Alternately, add the directory to LIBRARY_PATH by addiing the export command to your startup file.

  2. Compile file.cpp and link it with lib.a:

    icc file.cpp lib.a  

To link your library during compilation without modifying the LIBRARY_PATH environment variable use the -L option. For example:

icc file.cpp -L /libs lib.a

During compilation, the compiler passes object files to the linker in the following order:

  1. Object files, from files specified on the command line, in the order they are specified (left to right)

  2. Objects or libraries specified in default configuration files

  3. Default Intel and system libraries

For example, the command

icc lib1.a file.cpp lib2.a
would have the following link order:
  1. lib1.a
  2. file.o
  3. lib2.a
  4. Objects or libraries specified in default configuration files
  5. Default Inel and system libraries

Manage Libraries on Windows

The LIB environment variable contains a semicolon-separated list of directories in which the Microsoft linker will search for library (.lib) files. The compiler does not specify library names to the linker but includes directives in the object file to specify the libraries to be linked with each object.

For more information on adding library names to the response file and the configuration file, see Using Response Files and Using Configuration Files.

To specify a library name on the command line, you must first add the library's path to the LIB environment variable. Then you can specify the library name on the command line. For example, to compile file.cpp and link it with the library mylib.lib enter the command:

icc file.cpp mylib.lib

Other Considerations

The Intel Compiler Math Libraries contain performance-optimized implementations for various Intel platforms. By default, the best implementation for the underlying hardware is selected at runtime. The library dispatch of multi-threaded code may lead to apparent data races, which may be detected by certain software analysis tools. However, as long as the threads are running on cores with the same CPUID, these data races are harmless and are not a cause for concern.