2

我用了:

sudo add-apt-repository ppa:ubuntu-toolchain-r/test    
sudo apt-get update
sudo apt-get install g++-4.8

在 ubuntu 13.04 中安装 g++4.8。但是当我想编译一个c++程序时,例如 world.cpp 我写了 g++ world.cpp 我收到了:

/usr/local/bin/ld: this linker was not configured to use sysroots
collect2: error: ld returned 1 exit status

我是 linux 新手。我不能用这个解决我的问题

4

1 回答 1

2

最好安装包含编译所需的所有软件的元包 build-essential。

sudo apt-get install build-essential
于 2013-10-18T05:54:15.997 回答