On Thu, May 9, 2013 at 3:43 AM, Gábor Kozár <span dir="ltr"><<a href="mailto:kozargabor@gmail.com" target="_blank">kozargabor@gmail.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr"><div>Hi,<br><br></div>I'm using clang++ -### to get the -cc1 command I can add my own -cc1 options to. Unfortunately, the command I'm getting contains wrong include paths.<br><br>I have CPPFLAGS and LDFLAGS all set with the correct include paths. Which variable do I need to set for this to work correctly?<br>
</div></blockquote><div><br></div><div>You need to pass your CPPFLAGS to clang yourself:</div><div><br></div><div>  clang++ $CPPFLAGS ...</div><div><br></div><div>The passing of $CPPFLAGS to the preprocessor is typically performed by the build system (eg make), not by the compiler itself. See <a href="http://www.gnu.org/software/make/manual/make.html#Catalogue-of-Rules">http://www.gnu.org/software/make/manual/make.html#Catalogue-of-Rules</a></div>
<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Thanks!<br><br>Gabor<br></div>
<br>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br>