From: SamL on
As we know when given a .s file gcc will call as to compile it

gcc -v -c -g -O2 conftest.s

as --gdwarf2 -a32 -mppc -many -V -Qy -o conftest.o conftest.s


I am wondering if I can force gcc to use 'as' in a specific path. I
have put that path in the PATH env var but it does not work.

Thanks.