码迷,mamicode.com
首页 > 其他好文 > 详细

Debian/Ubuntu 下安装gcc/g++ 4.8.1

时间:2014-10-03 19:02:05      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:style   os   使用   ar   for   strong   sp   c   on   

  gcc 4.8.1 是第一个完全支持C++11 的编译器,Windows上可以安装mingw版的,在sourceforge 上有下载,安装也比较方便。在Linux上安装的话需要首先安装一些依赖库。在Ubuntu12.04 lts默认安装的是gcc4.6.3,其实该版本也支持一些c++11的特性,可以通过增加“-std=c++0x" 编译选项来使用这些特性,但是对多线程库的支持较差,gcc 4.8.1 是通过ppa来安装的,因此需要安装ppa repository 。下面就来看一下安装步骤:

首先安装依赖:(可以用aptitude解决包依赖障碍)

sudo apt-get install libgmp-dev
sudo apt-get install libmpfr4 libmpfr-dev
sudo apt-get install libmpc-dev libmpc2
sudo apt-get install libtool
sudo apt-get install m4
sudo apt-get install bison
sudo apt-get install flex
sudo apt-get install autoconf

接下来进入到安装gcc4.8.1 的关键步骤:

sudo add-apt-repository ppa:ubuntu-toolchain-r/test

(如果提示apt-get install python-software-properties,就执行之)

sudo apt-get update

sudo apt-get install gcc-4.8
sudo apt-get install g++-4.8
sudo apt-get install gcc-4.8-multilib # 或者 sudo aptitude install
sudo apt-get install g++-4.8-multilib # 或者 sudo aptitude install
sudo apt-get install gcc-4.8-doc
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20
sudo update-alternatives --config gcc
sudo update-alternatives --config g++

sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get dist-upgrade

之后就可以使用了,通过使用gcc -v 命令可以查看当前gcc的版本

Debian/Ubuntu 下安装gcc/g++ 4.8.1

标签:style   os   使用   ar   for   strong   sp   c   on   

原文地址:http://blog.csdn.net/hexrain/article/details/39757009

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!