【发布时间】:2023-03-18 10:50:01
【问题描述】:
我正在编译一个基于 autotools C 的项目,我收到了一些警告和错误。它们显示如下:
foo.c:123: warning: some message
我希望它们像这样显示:
/full/path/to/foo.c:123: warning: some message
我知道这不能通过 gcc 进行配置,除非将完整的文件路径本身传递给它,所以我想这必须通过 autoconf/automake 进行配置。
这可能吗?如果有,怎么做?
【问题讨论】:
标签: autotools autoconf automake gcc-warning