SVN commit 1293416 by lunakl: make ICECC_CC/CXX work again I guess I got a bit carried away, if it's been explicitly specified to override the compiler to use, it should override everything. M +8 -0 local.cpp --- trunk/icecream/client/local.cpp #1293415:1293416 @@ -125,6 +125,14 @@ string find_compiler( const CompileJob& job ) { + if (job.language() == CompileJob::Lang_C) { + if (const char* env = getenv( "ICECC_CC" )) + return env; + } + if (job.language() == CompileJob::Lang_CXX) { + if (const char* env = getenv ("ICECC_CXX")) + return env; + } return path_lookup(job.compilerName()); }