On Fri, Apr 10, 2009 at 12:11:25AM +0100, Max Bolingbroke wrote: > 2009/4/9 Ian Lynagh <[email protected]>: > >> Undefined symbols: > >> "_processzm1zi0zi1zi1_SystemziProcessziInternals_Inherit_closure", > >> > >> * Right then... let's try "make clean" and then "make" again... > >> * The same problem! > >> * I manually rerun the failing "ghc" command with "-package process" > > > > Hmm, are you bootstrapping with 6.6? > > > > If so, that's not supported; there's enough to test with 6.8, 6.10 and > > 6.12 on the various supported platforms. > > Unfortunately not: > > $ ghc --version > The Glorious Glasgow Haskell Compilation System, version 6.10.1
Oh, OK. What does "ghc-pkg list" say? And does this work?: cat <<EOF > foo.hs import System.Environment; import System.Cmd; import System.Exit main = getArgs >>= rawSystem "/usr/bin/ghc" >>= exitWith EOF ghc -O -c foo.hs -o foo.o ghc -o foo -O foo.o If the last step fails, what does this say?: ghc -o foo -O foo.o -v Thanks Ian _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
