链接PAPI时迂腐提升错误

时间:2016-03-22 20:07:25

标签: c++ papi gcc-pedantic

我正在尝试在Arch Linux x86_64中构建一个使用PAPI 5.4.3.0库的项目。

为简单起见,我在这两个文件中复制了我不理解的内容:

A.cpp

#include "string.h"
#include "papi.h"

int main() {
} 

B.cpp

#include "papi.h"
#include "string.h"

int main() {
} 

编译时(对象文件)我得到以下内容:

(1)$ g++ A.cpp -c -std=c++11
(2)$ g++ A.cpp -c -std=c++11 -pedantic
In file included from b.cpp:2:0:
/usr/include/papi.h:1021:27: error: declaration of ‘int ffsll(long long int)’ has a different exception specifier
int ffsll(long long lli); //required for --with-ffsll and used in extras.c/papi.c
                       ^
In file included from A.cpp:1:0:
/usr/include/string.h:524:26: error: from previous declaration ‘int ffsll(long long int) throw ()’
__extension__ extern int ffsll (long long int __ll)

(3)$ g++ B.cpp -c -std=c++11 -pedantic

为什么 -pedantic 标志会引发错误,但不会引发警告?(2)

为什么第3次运行不会引发任何事情(仅通过切换包含)?

1 个答案:

答案 0 :(得分:1)

App.js可以完全兼容C ++ Standard并禁用gcc扩展。因此,在此模式下报告的内容通常是错误的。

至于为什么改变包含的顺序会改变错误,我只能猜测。我最好的猜测是string.h定义了某些在papi.h中检查过的宏。查看它的源代码可能有所帮助。