Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

stdarg header file

Nikolaos_S_
Beginner
385 Views
According to http://software.intel.com/file/1828 a replacement of the standard stdarg.h file is supposed to be included with the IA-32 distribution of the Intel C compiler. However, stdarg.h is nowhere to be found in the include subdirectory. Does anyone know how to deal with this missing header file?

Nick
0 Kudos
1 Reply
TimP
Honored Contributor III
385 Views

Evidently, if there is no stdarg.h in the Intel include directory, the reference goes back to the underlying compiler (gcc or MSVC). Possibly, the special stdarg.h was a part of the cxxlib-icc (Dinkumware) support which is no longer provided.

I don't think there was ever a suggestion that you could refer to it in any way other than

#include

thereby depending on the compiler installation to set the right path.

0 Kudos
Reply