On Nov 13, 10:53 pm, Greatwolf <gmane.greatw...@mamber.net> wrote: > Is there any option or switch available that can make gcc display some > information to stdout/stderr as it compiles source files?
No. See http://www.faqs.org/docs/artu/ch01s06.html, "Rule of Silence". Also note that usually gcc is not used to compile more than one file at once (although it can). Don't do this: "g++ *.cpp -o foo". Instead, write a proper Makefile. Make does echo commands it is executing, and so you'll see something like: g++ -c foo.cpp g++ -c bar.cpp g++ -o foo foo.o bar.o Cheers, _______________________________________________ help-gplusplus mailing list help-gplusplus@gnu.org http://lists.gnu.org/mailman/listinfo/help-gplusplus