我正在使用-Wlto-type-mismatch
和-Werror
设置gcc编译(为了项目的其余部分)。我有一个extern
struct
,其中包含一个引发lto-type-mismatch
警告/错误的灵活数组。
这里的代码简化为一个例子:
h.h:
typedef struct {
int i;
int ints[];
} struct_t;
交流转换器:
#include "h.h"
extern struct_t my_struct;
int main() { // just here to avoid optimizing away the decls
return my_struct.ints[0];
}
b.c:
#include "h.h"
struct_t my_struct = {
20,
{
1,
2,
},
};
编译(在这里使用arm gcc,但在使用本机gcc时也是如此)
$ arm-none-eabi-gcc -flto -Wlto-type-mismatch -Werror a.c b.c -o foo
a.c:3:17: error: size of 'my_struct' differ from the size of original declaration [-Werror=lto-type-mismatch]
extern struct_t my_struct;
^
b.c:3:10: note: 'my_struct' was previously declared here
struct_t my_struct = {
^
lto1: all warnings being treated as errors
我尝试在
中包装一个或两个声明#pragma gcc diagnostic push
#pragma gcc diagnostic ignore "-Wlto-type-mismatch"
<decl>
#pragma gcc diagnostic pop
但是我无法抑制警告,可能是因为它是链接时优化,#pragma
行已经很久了。
问题
你能建议一些方法来编译并在其他地方保留警告吗? (或-Wlto-type-mismatch
不应抱怨灵活阵列?如果是,我可以提交错误报告。)
答案 0 :(得分:1)
在查询gcc-help邮件列表后,我提交了一个错误:https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81440。当事情发生时,会在这里跟进。]
跟进:该错误已在gcc 7.3.1或更早版本中修复。