Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 raspberryPi 运行 WiringPi Cpp 版本。我下载了这个并尝试运行,但出现以下错误。
这里有什么问题?我做错什么了吗?
升级你的 GCC。您似乎拥有 GCC 4.6,并且您提到的标志是在 GCC 4.7 中引入的。
g++ -v在命令行上运行。如果版本号是 4.3 到 4.6 替换-std=c++11为-std=c++0x,看看你是否得到任何爱。如果这仍然不起作用,您将升级编译器或从库中删除 c++11 功能。认真推荐前者而不是后者。
g++ -v
-std=c++11
-std=c++0x
如果编译器是4.3之前的版本肯定升级。
我需要好好读书。跳过获取版本号。尝试-std=c++0x,如果失败则升级编译器。