gcc警告“在GCC 7.1中为X传递的项目参数传递”是什么意思?

时间:2018-01-08 11:24:38

标签: c++ gcc

我有一个C ++项目可以在x86 Linux和Windows上使用gcc 7.2进行正常构建而没有警告,我需要将它移植到ARM设备上,所以我尝试用“arm-linux-gnueabihf”gcc 7.2交叉编译它在我的x86机器上运行,它构建但我得到了很多这种警告

note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<P2d*, std::vector<P2d> >' changed in GCC 7.1
_M_realloc_insert(end(), __x);

/opt/armv7-gcc-2017/arm-linux-gnueabihf/include/c++/7.2.0/bits/vector.tcc:105:21: note: parameter passing for argument of type '__gnu_cxx::__normal_iterator<cpzparser::Anchor*, std::vector<cpzparser::Anchor> >' changed in GCC 7.1
    _M_realloc_insert(end(), std::forward<_Args>(__args)...);

/opt/armv7-gcc-2017/arm-linux-gnueabihf/include/c++/7.2.0/bits/vector.tcc:394:7: note: parameter passing for argument of type 'std::vector<cpzparser::PointEntity>::iterator {aka __gnu_cxx::__normal_iterator<cpzparser::PointEntity*, std::vector<cpzparser::PointEntity> >}' changed in GCC 7.1
       vector<_Tp, _Alloc>::

生成的可执行文件似乎工作正常,但我担心所有这些警告的存在,因为我不知道它们的意思..任何线索?

1 个答案:

答案 0 :(得分:14)

该警告告诉您在6和7.1之间存在一个微妙的ABI更改(实际上是一致性修复),因此当使用7.x构建的代码调用时,使用6.x或更早版本构建的库可能无法正常工作(反之亦然)。只要您的所有C ++代码都是使用GCC 7.1或更高版本构建的,您就可以安全地忽略此警告。要禁用它,请将-Wno-psabi传递给编译器。

有关更改背景的更多详细信息,请参阅the GCC 7 changelogthe associated bug