Generic c-compiler invoking, if you using GNU/GCC, check out gcc -v, this
will show you whats happening. GCC is a driver program and it calls compilers
directly through LANGHOOKS interfaces and GCC will call cc1 the c-compiler like
wise with g++ gcj gfortran etc. Notice if you write C code in a bla.f77 gcc
won't compile because the file extension is wrong etc.
Review by redbrain (3 months ago)
Generic c-compiler invoking, if you using GNU/GCC, check out gcc -v, this will show you whats happening. GCC is a driver program and it calls compilers directly through LANGHOOKS interfaces and GCC will call cc1 the c-compiler like wise with g++ gcj gfortran etc. Notice if you write C code in a bla.f77 gcc won't compile because the file extension is wrong etc.