From: duncans AT fwi DOT uva DOT nl (Duncan Sands ) Subject: Re: Redirecting gcc's messages To: djgpp AT sun DOT soe DOT clarkson DOT edu Date: Tue, 28 Jun 1994 12:30:17 +0200 (MET DST) On Fri, 24 Jun 1994, Peter Waszkewitz wrote: > Is there any possibility of redirecting gcc's messages to a file. I tried > the standard method: > gcc [whatever there is to do] > filename > but it didn't work. Since gcc uses go32 to run, you can do set go32=2r1 which will redirect the standard error to the standard output for any program run using go32, for example gcc. Now gcc myprog > file will work. You can always undo the redirection afterwards with set go32= Be aware that the redirection will apply to any program run using go32 and this can cause some problems, so it's probably better to turn the redirection off after you've compiled. Good luck, Duncan Sands.