在Ubuntu Precise上安装mingw-w64-g ++ 4.8

时间:2015-09-07 22:11:12

标签: ubuntu-12.04 travis-ci mingw-w64 g++4.8

有没有办法在Ubuntu Precise(12.04)上安装mingw-w64-g ++ 4.8,以便通过ppa交叉编译到Windows? 它需要TravisCI上的C ++ 11支持

1 个答案:

答案 0 :(得分:0)

如果您只需要C ++ 11,可以使用以下命令作为示例来安装较新版本的GCC / G ++

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

sudo apt-get update

sudo apt-get install gcc-5 g++-5
sudo update-alternatives 
sudo update-alternatives --remove-all gcc
sudo update-alternatives --remove-all g++
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 20
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 20
sudo update-alternatives --config gcc
sudo update-alternatives --config g++