gpt4 book ai didi

c++ - C++11 程序可以使用 BlueZ 吗?

转载 作者:行者123 更新时间:2023-11-30 03:57:30 26 4
gpt4 key购买 nike

我在使用 BlueZ 库编译简单的 C++11 程序时遇到问题:

#include <bluetooth/bluetooth.h>
int main() {}

在我的 Fedora 21 机器上用 g++ -std=c++11 main.cpp 编译它得到:

In file included from ../scale.cpp:1:0:
/usr/include/bluetooth/bluetooth.h: In function ‘uint64_t bt_get_le64(const void*)’:
/usr/include/bluetooth/bluetooth.h:177:9: error: expected identifier before ‘*’ token
return bt_get_unaligned((const uint64_t *) ptr);
^
...

这是 BlueZ 5.23 版和 GCC 4.9.2。如果我删除 -std=c++11 标志,一切正常。

这正常吗?

最佳答案

默认情况下,GCC 编译为带有 GNU 扩展的 C++03。如果您指定 -std=C++11,那么它会编译为 ISO C++11 且不启用任何扩展。但是,如果您改为指定 -std=gnu++11,那么您还会获得 GNU 扩展。

关于c++ - C++11 程序可以使用 BlueZ 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27925454/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com