Pretty sure you can pass them on the command line without modifying the code too. Glad you found a way though.<div><br></div><div>TTimo<br><br><div class="gmail_quote">On Tue, Oct 16, 2012 at 11:08 AM, John Smith <span dir="ltr">&lt;<a href="mailto:lbalbalba@gmail.com" target="_blank">lbalbalba@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hrm.<br>
<br>
Looks like the environment is already explicitly imported at the top<br>
of &#39;SConstruct&#39; :<br>
<br>
import sys, os, platform, cPickle<br>
<br>
And the compiler gets set in config.py :<br>
<br>
env[&#39;CC&#39;] = self.cc<br>
env[&#39;CXX&#39;] = self.cxx<br>
<br>
Changing that in config.py to this :<br>
<br>
env[&#39;CC&#39;] = os.getenv(&quot;CC&quot;)<br>
env[&#39;CXX&#39;] = os.getenv(&quot;CXX&quot;)<br>
<br>
and then running<br>
<br>
scan-build scons<br>
(which overrides CC and CXX)<br>
<br>
Seems yo do the trick<br>
<br>
<br>
<br>
Thanks for the help,<br>
<br>
<br>
Regards,<br>
<br>
<br>
John Smith.<br>
<div class="HOEnZb"><div class="h5">_______________________________________________<br>
Gtkradiant mailing list<br>
<a href="mailto:Gtkradiant@icculus.org">Gtkradiant@icculus.org</a><br>
<a href="http://icculus.org/mailman/listinfo/gtkradiant" target="_blank">http://icculus.org/mailman/listinfo/gtkradiant</a><br>
</div></div></blockquote></div><br></div>