Disable GDB output?
-
wrote on 8 Mar 2021, 07:17 last edited by
When debugging my program, application output console is flooded by "RTTI symbol not found for class" messages for a certain class. It contains no useful information and is making the debugging a pain. Is there a way to disable this or all GDB messages in QT Creator?
-
When debugging my program, application output console is flooded by "RTTI symbol not found for class" messages for a certain class. It contains no useful information and is making the debugging a pain. Is there a way to disable this or all GDB messages in QT Creator?
wrote on 8 Mar 2021, 08:48 last edited by@mmikkone
I believe you will have trouble suppressing these messages. If you rungdb
outside of Qt Creator you will see these messages. And I believe the only way of suppressing them would be viagdb ... 2>/dev/null
, which probably won't be available/play right from Creator.
2/2