Some answers here were in the tone that we're stuck with command line, and that's why. I disagree. If we pass compiler options via command line (XML configuration file, anyone?), then almost every standard tool can interface with the compiler.
We can easier integrate different things. Different compilers on different platforms may have different command line parameters for disabling warnings etc. but passing file names etc. is basically the same. A sophisticated config file probably wouldn't.
Command line is also more orthogonal than GUI tools (Pragmatic Programmer book tells really well why, and why it's so important). With shell you can accomplish things it wasn't explicitly designed to do. With GUI you usually have to explicitly built build support for something, if you want it to be possible.
