Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. how to send c/c++ compiler errors to a text file compiling from Qt Creator
Forum Update on Monday, May 27th 2025

how to send c/c++ compiler errors to a text file compiling from Qt Creator

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 317 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    JacobNovitsky
    wrote on 21 Oct 2023, 07:57 last edited by
    #1

    What should I insert to pro file to send compiler errors to txt file?
    https://stackoverflow.com/questions/47806506/how-to-send-c-compiler-errors-to-a-text-file-in-cmd

    "g++ main.cpp 1>normal.txt 2>error.txt"

    C 1 Reply Last reply 22 Oct 2023, 01:47
    0
    • J JacobNovitsky
      21 Oct 2023, 07:57

      What should I insert to pro file to send compiler errors to txt file?
      https://stackoverflow.com/questions/47806506/how-to-send-c-compiler-errors-to-a-text-file-in-cmd

      "g++ main.cpp 1>normal.txt 2>error.txt"

      C Offline
      C Offline
      ChrisW67
      wrote on 22 Oct 2023, 01:47 last edited by ChrisW67
      #2

      @JacobNovitsky You don't.

      $ cd /tmp/build-untitled-Desktop_Qt_6_6_0_GCC_64bit-Debug
      $ qmake  ../untitled/untitled.pro
      $ make 2>&1 | tee compile.log
      ... normal compile output
      $ cat compile.log
      ... same output captured
      

      or, if you do not also want the output on the console:

      make > compile.log 2>&1 
      

      BTW: I do not understand why you think you need this. You can copy and paste from the Compiler Output pane in Qt Creator if you really need the output in a file.

      1 Reply Last reply
      2

      1/2

      21 Oct 2023, 07:57

      • Login

      • Login or register to search.
      1 out of 2
      • First post
        1/2
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved