Xref: news2.mv.net comp.os.msdos.djgpp:5529 From: "paul winner" Newsgroups: comp.os.msdos.djgpp Subject: Screen capture of compilations Date: Sat, 29 Jun 96 11:20:33 -0400 Organization: PSI Public Usenet Link Lines: 16 Distribution: world Message-ID: <3045147437.0.p00088@psilink.com> NNTP-Posting-Host: worldlink.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp I'm trying to capture the output of my V2 compilations so that I can cleanup the -Wall errors. With BC and MSC you could run things like: make foo > warnings.foo and get a file showing everything that had displayed to the screen. With djgpp make foo > warnings.foo gives a warnings.foo file which contains the steps as progressed through the makefile, ie: gcc -c -O -I../include tile.o tile.c and warnings to the screen (ie, '/* used in comment'), but the piped file and the screen don't match at all. PS: Is there an explanation somewhere for the command line /W options?