I want a list of files where compilation errors happened without duplicates. Like so:
/home/luizromario/project/src/foo.cpp
/home/luizromario/project/src/bar.cpp
I'm using Emacs's compilation mode to run gcc. Is there some way to achieve that either through gcc itself or through Emacs?
Edit: I'm running make with the -k0 option, so the compilation process already keeps going as long as it can. My goal is to create a list of files I need to go through to make some small adjustments so that the compilation succeeds. I already know what the compilation error is (I marked one specific method as [[deprecated]]), so I don't need any diagnostics.