gcc /g++コンパイルエラーメッセージからファイル名を削除したい。
を実行するgcc myfolder/temp.c
と、結果は次のようになります。
myfolder/temp.c:5:1: error: unknown type name ‘voi’
myfolder/temp.c:87:6: error: conflicting types for ‘max’
myfolder/temp.c:5:5: note: previous declaration of ‘max’ was here
しかし、私はこれが欲しい:
5:1: error: unknown type name ‘voi’
87:6: error: conflicting types for ‘max’
5:5: note: previous declaration of ‘max’ was here
そのためのgccフラグはありますか?