Gcc C ++ command line error parser

Are there any programs for parsing and displaying in a good format C ++ error messages generated by gcc.
I'm really looking for something like less , which I can connect to my errors, which by default reset the parameter lists of the template, perhaps with some nice highlighting, so that my errors are really readable.

(Yes, this is a boost error. I have such incomprehensible errors, in case you are interested)

+6
c ++ gcc boost
source share
3 answers

STL Error Decryptor (AKA STLFilt) can help decode them. I had mixed results.

+1
source share

Both STLFilt and TextFilt format and filter complex C ++ error messages.

STLFilt has more features and seems to be better supported.

TextFilt is more customizable.

0
source share

This is the method that I used to solve this problem, it may not be the best, but it helps a lot if you have very template C ++ code.

0
source share

All Articles