Qt Creator Clang Code Model
Jump to navigation
Jump to search
Documentation: http://doc.qt.io/qtcreator/creator-clang-codemodel.html
Debugging
QLoggingCategory is used for debugging output. With the following invocation debugging output will be generated:
Linux/Mac: $ QT_LOGGING_RULES=qtc.clang*=true ./qtcreator
Windows (start DebugView in advance to see the output): $ set QT_LOGGING_RULES=qtc.clang*=true $ qtcreator.exe
Internal command line (since Qt Creator 4.0)
The debugging output from above will contain all the command line options that are passed on to libclang, which is enough for most cases.
However, to see also the resulting internal command line of libclang run:
- Open Menu: Tools > Options > C++ > Tab: Code Model
- Copy some warning configuration by clicking on "Copy...", give it a name like "Debug"
- Replace all the options from the copied configuration with "-###"
- Close and re-open the editor document - the new debugging output will contain also the internal command line
Note that libclang/clangbackend will crash afterwards, so do not forget to switch back to a sane warning configuration.