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 will like to install GHC 7.2.2 on a Redhat x86_64 (RHEL v5) server at work (in my user account. I don't have root access). I downloaded the generic binary for Linux x86_64 from GHC download page. But, when I run configure, it throws glibc version exception for ghc-pwd since the glibc version on Linux is 2.6. The required glibc version is 2.7.

I googled around but didn't find any pre-configured GHC binaries for Redhat 5. I will appreciate pointers on how to work around the glibc version issue if any one has figured it out for RHEL 5 (or any Linux flavor if the workaround is general). Alternatively, if there are zipped binaries for Redhat x86_64 available somewhere, I can download and unzip them, if you point me to them. Otherwise it looks like I am stuck with GHC 6.12 at work.

share|improve this question
1  
I have an existence proof that it can be done, but I need some time to check with others whether we remember how to repeat the process. – acfoltzer Dec 8 '11 at 5:45
Terrific...please do publish the proof if you can collect the missing pieces. Will really help us with adopting newer versions of GHC at work. – sal Dec 8 '11 at 14:22
@acfoltzer, any luck gathering proof? Will be very much appreciated if you have it, and can share. – sal Dec 16 '11 at 1:11
Sorry for the delay, I've seemed to have no luck. None of us kept a "lab notebook" as it were, but the general consensus is that we did something like @augustss: install binutils, gcc, glibc, ghc – acfoltzer Dec 16 '11 at 11:44
@acfoltzer, thanks for the feedback. I will mark post by augustss as the accepted answer. – sal Dec 16 '11 at 16:17

2 Answers

up vote 2 down vote accepted

I had a similar problem, so I compile ghc myself. Doing so is non-trivial because you need newer binutils and gcc. But t can be done (all in user-land).

share|improve this answer
Which version of binutils and gcc did you need, to compile ghc? I will like to avoid compiling ghc myself because that is lot of work, with no sure payoff (since I don't have root privileges to install what is needed). But if I can't find the binaries/workaround, then I will have to. – sal Dec 8 '11 at 13:11
I used binutils-2.20.1 and gcc-4.3.6. – augustss Dec 8 '11 at 15:14

I built ghc 7.4.1 on stock RHEL 5.3, by starting with a binary build of ghc 6.6 or 6.8 (forget which one) which ran fine on the platform. Then I used that to build ghc 6.12 from source, and then used 6.12 to build 7.4.1 from source. Had to use gcc 4.3 to build 7.4.1, but that's fine as gcc 4.3 is available on RHEL 5.3.

It's not much work, just a fair amount of time for all the builds to complete.

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.