git
is in the installation — checkperl boot
— check./configure
— breaks, linker does not find libgmp.so
I built
gmp
from sources, and installed it into my home directory.But... it still did not build :-(
As always, Stack Overflow for the win!
Specifying
setenv LIBRARY_PATH $HOME/lib
did the trick.
For good measure I also added
--with-gmp-libraries=
$HOME/lib
--with-gmp-includes=
$HOME
/include
to the configure line, but this might be redundant?
(Another thought, find seems to reveal some
libgmp.so
under /usr
, I might point it there.)So, finally,
./configure ...
— checkThe part that involves building was the pleasure part:
nice make -j14
— checkThen I dared running the test suite:
make test
— checkThis step takes its time, as it is not parallelizable.
There is only one drop of bitterness, namely the
stage2
compiler does not run on RHEL5. But that is something I did not expect, actually.make install
— checknothing unexpected here.
Have fun with GHC on RHEL6!
No comments:
Post a Comment