Disable GDB output?
Unsolved
Qt Creator and other tools
-
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?
-
@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.