Specifying Include Files

The Intel® C++ Compiler searches the default system areas for include files and whatever is specified by the -I compiler option. The compiler searches directories for include files in the following order:


  1. Directories specified by the -I option

  2. Directories specified in the environment variables

  3. Default include directory

Use the -X option to remove default directories from the include file search path.

For example, to direct the compiler to search the path /alt/include instead of the default path, do the following:

icpc -X -I/alt/include prog1.cpp

See Also


Submit feedback on this help topic

Copyright © 1996-2011, Intel Corporation. All rights reserved.