New to Compiling with a makefile.
Hi im currently using cygwin to try compile a mud code base. But I get warrnings and errors. But there are too many and they scroll off screen. Is there a way to have my make file output the errors and warrnings to a text file? I tried using > But It doesn't output everything I need.
January 07, 2005 05:46 PM
The problem is that > redirect standard out. You can either redirect everything with &> or add stderr to stdout with 2>&1 or write stderr out to a different file 2> (IIRC). This is what I'd do on a Linux system, so I assume it will work in cygwin.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement