Visual Studio 2015 Community is free and missing almost no features. I even use it because Professional has nothing useful to me or to DSP.
GCC 4.9 is not the default version in Ubuntu 14.04, you'll need to use the Ubuntu Toolchain PPA to get it
Code: Select all
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 90