%% "Leeuwesteijn,Joost" <[EMAIL PROTECTED]> writes: l> My compiler puts -all- its output to stdout, including warnings and l> errors. That's too bad because I redirect the normal output to a l> file, but developers would like to see the warnings and errors l> scroll by.
l> How does gcc handle this? Do warnings and errors go to stderr, as I l> would expect? Yes, definitely. Actually, GCC doesn't print any output at all "normally", so virtually all its output goes to stderr. It doesn't print anything like "Compiling foo.c"... that's very non-UNIX! :-) -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
