Simple question. I am compiling an ada program with gnat. The gcc command ends up looking like gcc -c -Ia -Ibunch -Iof -Iincludes -I- -o /some/object/file.o /some/source/file.adb
however the error format consists of just file.adb:line:offset: problem
.
Is there any way to get GNAT make or gcc to print the full path to the file in its errors, as specified on the command line? IE: to get /some/source/file.adb:line:offset: problem
.
I know that with the -gnatv
one could argue that it prints the full path, but I want something significantly less verbose than that.