tags:

views:

384

answers:

2

Hi all do you guys know of any programs which can be used to visualize error messages from gcc. I am imagining something which will allow interactively to collapse all those long template typenames, color code different parts of the error message and what not.

+2  A: 

For long template errors, related to stl you can use stlfilt It's an error decryptor

coelhudo
+2  A: 

I've used pretty make in the past. Not sure how it works with c++ template error messages, but it does help visualize compiler output in general.

Then there's also Color GCC, which does color error and warning messages from gcc. Probably not as advanced as you'd like it to be, but it may be something at least :)

Isak Savo