eclipse中报错Description Resource Path Location Type Program "g++" not found in PATH Hello_Barebone Project Properties, C++ Preprocessor Include.../Providers, [CDT Cross GCC Built-in Compiler Settings] options C/C++ Scanner Discovery Problem
时间: 2024-04-05 22:32:17 浏览: 267
stm32f4_barebone_environment:基于 stm32f4 的项目的超简单构建环境
这个错误提示是因为 Eclipse 找不到 g++ 编译器,建议你检查一下你的系统环境变量配置是否正确,确保 g++ 已经被正确地安装了,并且在系统环境变量 PATH 中已经被添加。如果你已经安装了 g++,但是依然遇到这个错误,可以在 Eclipse 中设置一下编译器的路径。具体的操作方式是:在 Eclipse 中打开 Project Properties,然后在 C/C++ Build -> Settings -> Tool Settings 中找到 C++ Compiler 选项卡,将 Command 值修改为 g++ 编译器的绝对路径即可。
阅读全文