Hi, On Dec 17, 3:03 pm, AJ ONeal <[email protected]> wrote: > As I understand it scons doesn't read from the environment variables, hence > the need to specifically import them, correct?
I think SCons does read from the environment variables. I had trouble with this for quite some time, but it does work. To see if it will take your variables, you could try the following script. scons-test.sh: CC=orange \ CXX=apple \ scons $@ Save, "chmod u+x scons-test.sh," run, and look in SCons' output for "orange" or "apple." I hope this helps, pikpik -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
