Sven Panne writes:
> The compilation of the latest Green Card version with GHC 3.01 fails
> in the linking phase:
>
> [ everything goes fine until...]
> ghc-3.01 -recomp -O -fglasgow-exts -H30M -o green-card Casm.o DIS.o Decl.o
>ErrMonad.o FillIn.o FillInMonad.o FiniteMap.o GCToken.o GetOpt.o GreenCard.o
>Lex.o LexM.o ListUtils.o MarshallMonad.o Name.o NameSupply.o Package.o
>Pretty.o PrettyUtils.o Proc.o Process.o Target.o Type.o Parse.o ErrorHook.o
> Parse.o(.text+0xa43e): undefined reference to `LexM_LexM_con_info'
...
Thanks, this is due to the same bug that broke compilation of DoCon a
while back. (Simplifier constructs bindings that use non-existent
newtype constructors.)
Fixed in the upcoming 3.02 (and in the current sources.)
--Sigbjorn