Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing gcc 4.8 on Debian

Tags:

gcc

c++11

debian

I want to start playing around with some of the newer C++11 features and it appears that the best support for this is with gcc 4.8, and Squeeze ships with 4.4.5.

However, I don't want to cause any "damage" to my current setup. What's the best way to get both versions of gcc running side-by-side? I'm concerned mostly at the large number of dependencies and that taking them all in to my current system may render it unstable.

Has anyone managed to do this, and what are the steps involved?

Failing that, I'll probably just create a VM and run an "unstable" Debian under that but it's a less-than-ideal solution.

like image 205
paxdiablo Avatar asked May 01 '13 01:05

paxdiablo


2 Answers

If you install GCC from source just make sure you don't install it to /usr and it won't mess anything up. If you install it as your own user, not root, then there is zero chance of messing up the system.

See http://gcc.gnu.org/wiki/InstallingGCC for the almost-idiot-proof minimal configuration.

I have various versions built as my user and installed in ~/gcc/4.X for various X.

The only thing to be aware of using that set up is that the shared libraries for the new version aren't in the dynamic linker's default search path, so you need to use LD_LIBRARY_PATH or some other solution to ensure executables find the libs from 4.8, see the libstdc++ FAQ and the page it links to in the manual

I use a wrapper script call g++11 which simply calls the new version of GCC with -std=gnu++11 and passes a flag to the linker telling it to set the path to the 4.8 libs in the executable:

$HOME/gcc/4.8/bin/g++ -Wl,-rpath,$HOME/gcc/4.8/lib64 -std=gnu++11 -Wall -Wextra -g "$@" 
like image 159
Jonathan Wakely Avatar answered Sep 24 '22 15:09

Jonathan Wakely


I had the same problem, and didn't want to fully upgrade to testing.

Jessie (testing) now contains g++-4.8 which is compliant with C++11.

I used apt-pinning in the following way:

A source to jessie was added to /etc/apt/sources.list:

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

/etc/apt/preferences was edited as such:

Package: * Pin: release n=wheezy Pin-Priority: 900  Package: gcc* Pin: release n=jessie Pin-Priority: 910 

Then,

$ sudo aptitude update $ sudo aptitude install gcc/jessie 

At which point I selected the second presented option to resolve dependencies fully.

like image 26
zek19 Avatar answered Sep 22 '22 15:09

zek19