搭建C++编译环境
安装git,g++ gcc 并且升级到4.9版本,用premake 从vs工程 输出为makefile 等
--安装git
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
--安装g++
sudo apt-get install build-essential
sudo apt-get install g++-multilib
sudo apt-get install libc6 libc6-dev
--更新 G++ 不然编译不过
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9
sudo apt-get install g++-4.9
sudo apt-get install gcc-4.9-multilib
sudo apt-get install g++-4.9-multilib
--安装好之后 创建链接 到4.9版本 不然默认还是4.8
sudo su
cd ../../usr/bin
ln -s /usr/bin/g++-4.9 /usr/bin/g++ -f
ln -s /usr/bin/gcc-4.9 /usr/bin/gcc -f
--安装nginx
apt-get install libtool