ubuntu 安装gcc
遇见如下错误时:
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
解答: a.yum命令安装 apt-get install yum
b.因为没有安装gcc的缘故 yum install -y gcc (有可能不行 如果不行换如下两命令执行)
sudo apt-get build-depgcc 就这条命令就可以搞定
方法二:sudo apt-get install build-essential 安装完了可以执行
gcc--version的命令来查看版本,输出如下:Copyright(C)2007FreeSoftwareFoundation,Inc.
安装完gcc 就不会报如上错误了。