0

In QT Creator build issues are showed in window as readable, filterable, customizable list.

Example of build issues in Qt Creator:

enter image description here

But in CLion it just a text list with links to build issues.

Example of build issues in CLion:

enter image description here

How to view build issues in CLion more readable?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Irina
  • 939
  • 1
  • 8
  • 26

1 Answers1

0

I think that the main reason is that Qt Creator uses the clang toolkit to gather semantic information about the code, while CLion has its own C++ parser. As such, CLion has a direct representation of the compiler errors and warnings, as you mention.

On the other hand, CLion is able to notify you of errors and warnings without compiling the code, immediately :-) This feature is called "Code inspection", is customizable and filterable, and will give you even more information than the compiler.

You can find it under Code | Inspect code....

Example output:

enter image description here

See also my other answer to a similar question.

Community
  • 1
  • 1
marco.m
  • 4,573
  • 2
  • 26
  • 41