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.
所以,我有 eclipse 工作,但我不得不把我的电脑送去更换。像我以前一样用 MinGW 设置 Eclipse,现在它无法解析任何头文件。
我已经编辑了环境变量和所有的爵士乐,所以我不知道该怎么做。
编辑:还得到一个未解决的包含错误。
修复了问题,缺少库是 MinGW,所以我添加了我需要的库,瞧,它的工作。
谢谢大家的建议!
你在做什么
#include <stdio.h>
或者
#include "stdio.h"
?
第一个告诉它在标准库中查找,而第二个告诉它在本地查找。尝试切换到第一个。
您可以运行以下命令:
sudo apt-get install build-essential