Re: Redirecting compiler output

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



"Dr. Germund Höjer" <germund@xxxxxxxxxxxxxxxxxx> writes:

> I cannot get g77 and gcc to redirect compiler messages to a text file.
> The line
> 
> g77 code.f > report.txt
> 
> only creates a file report.txt of zero lenght and any error or warning
> messages from the compiler only scroll by on the screen. I get the
> same behaviour working in KDE graphic mode and in plain text mode
> (SuSE Linux 8.1) with various versions of gcc. I am using 3.3.2 now.
> And the same happens with gcc 3.2.2 running under MinGW/Windows98 so I
> doubt it is an OS problem.

This is a basic Unix question.  It is not a compiler question.

If you are using bash, you want
    g77 code.f 2> report.txt
or
    g77 code.f &> report.txt

Ian


[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux