Re: -O dear

1997-03-19 Thread Simon L Peyton Jones
| grepping for "interface PreludeStdIO" in the 0.29 library interface files | comes up with nothing, so maybe it's not really surprising. (Or is it yet | more "magic"?..) Adding -fhaskell-1.3 does not help, either - the same error | message appears, before it spots all the continuation I/O! I

Re: -O dear

1997-03-19 Thread Sigbjorn Finne
OK, here's the Hack Of The Day(tm) - create an interface file containing the following: --snip-- interface Footos where import PreludeStdIO (Maybe) data Maybe a {-# GHC_PRAGMA Nothing | Just a #-} --snip-- and then include `Footos' where 0.29 is giving you bother. --Sigbjorn (Apologies

Re: -O dear

1997-03-18 Thread Simon L Peyton Jones
| Sorry. GHC version 0.29. FiniteMap version 6, it seems ({-# GHC PRAGMA | INTERFACE VERSION 6 #-} at the top). Compilation with verbose output appended | to this message. It's messy ;) In Convert.lhs, add import PreludeStdIO( Maybe ) Simon