gpt4 book ai didi

c++ - arm-none-eabi-g++ 找不到 stdc++ header

转载 作者:行者123 更新时间:2023-11-28 05:49:38 26 4
gpt4 key购买 nike

每当使用 arm-none-eabi(-g++-gcc-c++ 构建 C++ 源代码时code>) 包含一个 stdlib header ,gcc 表示找不到该文件:

测试.cpp:

#include <set>
#include <cmath>

using namespace std;

int main()
{
set<int> aSet();
aSet.insert(abs(-1));
return 0;
}

输出:

test.cpp:1:15: fatal error: set: No such file or directory
#include <set>
^
compilation terminated.

系统信息:
Ubuntu 15.10
GCC 版本 4.9.3 20150529(预发布)

最佳答案

GCC 正在寻找版本为 4.9.3 的文件,但 newlib 安装具有版本低于 4.9 的库。将 /usr/include/newlib/4.9 符号链接(symbolic link)到 /usr/include/newlib/4.9.3 解决了这个问题。

感谢 Alex Hoppus 帮助我进行调试

关于c++ - arm-none-eabi-g++ 找不到 stdc++ header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35528520/

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