I got the error stdarg.h file not found from wchar.h file when I run my program, error which does not occur when I simply run clang-check from the installation directory.
Does anyone has some idea on what is going on, and what did I do wrong ?
Clang is probably not finding it’s built-in includes directory. You can find it in “\lib\clang<clang version>\include”. You can also try passing the “-v” verbose flag to Clang to diagnose such issues.
Clang is probably not finding it's built-in includes directory. You can find
it in "<build folder>\lib\clang\<clang version>\include". You can also try
passing the "-v" verbose flag to Clang to diagnose such issues.
Yep. The easiest way to get tools like clang-check to find the builtin
includes is to do a $ make install for the regular clang, and then
copy the tools into the bin/ directory of the resulting installation
path.