The biggest issues are:
1) The infinite header reparsing. Already mentioned.
2) The fact that the toolchain is often separated into multiple binaries (make, preprocessor, compiler, assembler, archiver, impdef, linker, and dlltool in extreme cases) that all have to reinitialize all the time for each (preprocessor, compiler, assembler) or every couple of files (archiver, linker, and dlltool).
See also this discussion on comp.compilers: http://compilers.iecc.com/comparch/article/03-11-078 specially this one:
http://compilers.iecc.com/comparch/article/02-07-128
Note that John, the moderator of comp.compilers seems to agree, and that this means it should be possible to achieve similar speeds for C too, if one integrates the toolchain fully and implements precompiled headers. Many commercial C compilers do this to some degree.
Note that the unix model of factoring everything out to a separate binary is a kind of worst case model for Windows (with its slow process creation). Very noticable when comparing GCC build times between windows and *nix, specially if the make/configure system also calls some programs just to obtain information