Debian – How to install g++ 4.9 on debian stretch

debiang++

I tried install on my Debian strench g++-4.9 and I didn't find package via

apt-cache search g++-4.9

Oldest version I found only g++-5

Where can I get g++-4.9?

Best Answer

I got it working (very unsoundly) by adding jessie repo and then installing from it. Include in /etc/apt/sources.list:

deb http://ftp.us.debian.org/debian/ jessie main contrib non-free
deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free

Do apt-get update && apt-get install g++-4.9

After installation comment out jessie lines so that it doesn't conflict later with stretch. It would have been much better if Debian had included other g++ versions. Strangely enough, we have many versions of gcc bundled but only one version of g++ (6.0).

Related Question