Date: Fri, 29 Sep 2000 19:09:16 -0400 Message-Id: <200009292309.TAA17078@envy.delorie.com> From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: <8r3601$4hq$1@venus.telepac.pt> (pdestroy@netcabo.pt) Subject: Re: Too many errors References: <8r3601$4hq$1 AT venus DOT telepac DOT pt> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > When I try to compile my program it appears so many errors that it gets > bigger than a full page so it gets out of the window and I can't read the > first lines displayed with errors... How can I solve this problem? DJGPP comes with a program called "redir" (info utils redir). Use it to redirect errors to a file: redir -o errors.txt -eo gcc ... or redir -e errors.txt gcc ...