<div dir="ltr">Remove '-nobuiltininc' and substitute '-nostdinc'.  That's in addition to '-nostdinc++'</div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Nov 11, 2016 at 11:00 AM, Emilio Pombo via cfe-users <span dir="ltr"><<a href="mailto:cfe-users@lists.llvm.org" target="_blank">cfe-users@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><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-<wbr>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><span class="HOEnZb"><font color="#888888"><div><br></div><div>Emilio.</div></font></span></div>
<br>______________________________<wbr>_________________<br>
cfe-users mailing list<br>
<a href="mailto:cfe-users@lists.llvm.org">cfe-users@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-users</a><br>
<br></blockquote></div><br></div>