CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 12 of 12

Threaded View

  1. #2
    Join Date
    Mar 2019
    Posts
    17

    Re: Is it possible to send verbose o/p of gcc to text file instead of standard output

    $ gcc --save-temps --verbose ex1.c -o ex1__ 2>&1 | tee a.txt

    The above works, but would like to know if any other way exists too, or not. If not, then why not.
    Last edited by ajiten73; March 28th, 2019 at 06:00 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured