GHC Hackathon

Simon Marlow simonmarhaskell at gmail.com
Mon Sep 11 08:40:29 EDT 2006


Andy Gill wrote:
> Here is how I compile on my (PPC) OSX.
> 
> 
> #!/bin/bash -x
> export PATH=$PATH:/usr/local/bin
> echo $PATH
> cd /Users/andy/night
> rm -Rf ghc
> darcs get --partial http://darcs.haskell.org/ghc
> cd ghc
> chmod +x darcs-all
> ./darcs-all --extra get
> darcs get --partial http://darcs.haskell.org/testsuite
> darcs get --partial http://darcs.haskell.org/nofib
> autoreconf
> ./configure
> (cd libraries/readline ; ./configure --with-readline-includes=/opt/ 
> local/include --with-readline-libraries=/opt/local/lib )

You should be able to replace those two steps with just

./configure --with-readline-includes=/opt/local/include \
             --with-readline-libraries=/opt/local/lib

because the configure flags are passed down to the configure scripts in subdirs.

Cheers,
	Simon


More information about the Cvs-ghc mailing list