安装gcc低版本

1/ 下载gcc 

      http://archive.ubuntu.com/ubuntu/pool/universe/g/

2/ 安装

     sudo dpkg --force-depends -i gcc-**.deb 

     缺什么就从1/中下载安装,安装完后/usr/bin/gcc-**就会存在

3/ 做一个与原来gcc的切换 

     sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-** 1

     最后的 1 是优先级 值越大 优先级越高

4/ 选择版本

    sudo update-alternatives --config gcc

 

There are 2 choices for the alternative gcc (providing /usr/bin/gcc).

  Selection    Path               Priority   Status

------------------------------------------------------------

  0            /usr/bin/gcc-4.4    2         auto mode

* 1            /usr/bin/gcc-**   1         manual mode

  2            /usr/bin/gcc-4.4    2         manual mode

Press enter to keep the current choice[*], or type selection number: 

你可能感兴趣的:(安装gcc)