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
_______________________________________________
Cvs-ghc mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/cvs-ghc

Reply via email to