I'm compiling an autotools C based project and I'm getting some warnings and errors. They are displayed like this:
foo.c:123: warning: some message
I would like them to be displayed like this:
/full/path/to/foo.c:123: warning: some message
I know this is not configurable through gcc except by passing to it the full file path itself, so I guess that this must be configurable through autoconf/automake.
Is this possible? If so, how?