在eclipse中为c ++编译错误

时间:2012-10-24 11:40:09

标签: c++ eclipse

首先,我是Linux操作系统的新手。

我安装了ubuntueclipse以及c/c++包。

我开始了一个新项目,这是默认项目“Hello World c ++ project”, 当我跑它时,它给了我一个erorr:

Description     Resource    Path    Location    Type
Program "g++" not found in PATH         Preferences, C++/Build/Settings/Discovery, [CDT GCC Builtin Compiler Settings] options  C/C++ Scanner Discovery Problem

我该怎么办?

2 个答案:

答案 0 :(得分:8)

尝试安装键入console sudo aptitude install build-essential的所有开发人员工具。它将安装g ++,gcc和所有库。

答案 1 :(得分:-1)

我遇到了同样的问题。以下是我修复它的方法:

  1. 运行sudo sudo apt-get install build-essential以安装gcc,g ++和库。
  2. 在添加/etc/environment
  3. /usr/bin/g++文件中更新PATH环境变量
  4. 重新启动VM或PC以使此更改生效。