Mladen Nikitovic wrote: > Thanks, you are indeed right, I did not notice that. > > I'm compiling the solaris kernel and it seems like shadow compilation is > enabled, which means that both CC and GCC is used. > > I have tried to disable shadow compilation by setting CW_NO_SHADOW = 1 but > both compilers are still used. Strange....
Make sure the variable is _exported_ into the environment. Just doing a $ CW_NO_SHADOW=1 # will make this variable local to the current shell but won't give it to any applications (like "dmake") - you need to export the variable explicitly (e.g. $ export CW_NO_SHADOW=1 # for POSIX-based shells like "bash", "ksh93", "ksh" or $ CW_NO_SHADOW=1 ; export CW_NO_SHADOW # for the Bourne shell). ---- Bye, Roland -- __ . . __ (o.\ \/ /.o) roland.mainz at nrubsig.org \__\/\/__/ MPEG specialist, C&&JAVA&&Sun&&Unix programmer /O /==\ O\ TEL <currently fluctuating> (;O/ \/ \O;)
