Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a core i7 machine wtih CentOS 5.8 that I SSH into and use for running simulations. Unfortunately it only has gcc version 4.1.2. This seems to be producing vastly slower programs than what I get when compiling with optimizations on my slower laptop machine with Microsoft Visual Express c++ 2010. I've tried various g++ optimization flags but they aren't much help so I'm thinking i need to upgrade gcc.

I don't have root on the machine so it looks like I'd have to install it in my home directory. Is this feasible and if so are there any specific instructions needed to do this?

Thanks

share|improve this question

3 Answers

up vote 4 down vote accepted

You could use EasyBuild, which will allow you to very easily install a particular GCC version without requiring root, see http://hpcugent.github.com/easybuild .

Disclaimer: I'm an EasyBuild developer.

share|improve this answer
Thanks so much for this. I was working with a severely crippled system but the developer here helped me get around this and now I have easybuild to install tons of stuff without issue. Awesome! – user67081 Nov 21 '12 at 23:12

If you're building from a source tarball, I believe you should be able to get by with ./configure --prefix=~/path/to/build/into and then make and make install.

share|improve this answer
Unfortunately, it's a lot more complex than that. GCC depends on GMP, MPFR and recent versions also on MPC. So, you'll need to install these yourself as well. The good news is, you can trick the GCC build system to take care of this itself, which is exactly what EasyBuild does. It gets a little tricky though, which is exactly why I recommend EasyBuild (we've put quite a bit of time in getting this right, now everyone can just use it). – Kenneth Hoste Nov 21 '12 at 22:33
When I build my own GCCs from Subversion for testing against Parrot, the --prefix is all I need, but that's because I've already gone through all those other installs. Very cool that you've packaged it all up like that. – Andy Lester Nov 22 '12 at 0:09

You can also use GNU SRC..

After configuration, go to the gsrc directory and specify the following commands:

make -C gnu/gcc 
make -C gnu/gcc install
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.