Message-ID: <3644A229.75544173@montana.com> Date: Sat, 07 Nov 1998 12:40:25 -0700 From: bowman X-Mailer: Mozilla 4.5 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: djgpp AT delorie DOT com Subject: Re: Error message to long References: <36448F3D DOT A433C164 AT post DOT olivant DOT fo> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com Jakup Michaelsen wrote: > > How can I see all the error message when compiling if it doesn't fit on > the screen? one way: if you have the utility 'redir' just type >redir -e errorfile gcc ........... from the dos prompt. All of the stderr output will be captured in 'errorfile' for your inspection. This will also work with the editor 'vim' if you want to set it up to go from error to error after a compilation.