<div dir="ltr">Hi,<div><br></div><div>I want to make clang parser to avoid all default and builtin include path in my system (Ubuntu 14.04.5 LTS) for lib C and C++ stl (GNU, LLVM or whatever). I'm using the two most canonical options for doing that (I think): -<b>nobuiltininc</b> and -<b>nostdinc++</b>, also tried to change some roots or prefixes with -isysroot , -iwithprefix or --gcc-toolchain, but still with no luck.</div><div><br></div><div>A simple example of my clang unwanted behavior could be:</div><div><br></div><div><font face="monospace, monospace"><b>$</b> echo '#include <aio.h>' > aio.cc<br></font></div><div><div><font face="monospace, monospace"><b>$</b> clang++ -nobuiltininc -nostdinc++ -v aio.cc</font></div><div><font face="monospace, monospace">clang version 3.9.1-svn281634-1~exp1 (branches/release_39)</font></div></div><div><font face="monospace, monospace">...</font></div><div><div><font face="monospace, monospace">ignoring nonexistent directory "/include"</font></div><div><font face="monospace, monospace">#include "..." search starts here:</font></div><div><font face="monospace, monospace">#include <...> search starts here:</font></div><div><font face="monospace, monospace"> <b>/usr/local/include</b></font></div><div><font face="monospace, monospace"><b> /usr/include/x86_64-linux-gnu</b></font></div><div><font face="monospace, monospace"><b> /usr/include</b></font></div><div><font face="monospace, monospace">End of search list.</font></div></div><div><font face="monospace, monospace">...</font></div><div><br></div><div>So in this execution clang ends up finding the header aio.h (in /usr/include/), while this is just the behavior I'm looking forward to modify. Any ideas to change it?</div><div><br></div><div>With the clang verbose option, you can see that those paths are included before the parser starts, using flags like: -<b>internal</b>-isystem and -<b>internal</b>-externc-isystem, there is a way to change or turn-off those internal settings?</div><div><br></div><div>Thanks in advance!</div><div><br></div><div>Emilio.</div></div>