From: Malcolm W. <Mal...@cs...> - 2010-01-12 11:18:07
|
> mark@mark-laptop:~/MyCode/Blobbo$ ghc -v -package wx -o main Main.hs > Main.hs:3:0: > Failed to load interface for `BlobboControls': > locations searched: > BlobboControls.hi > BlobboControls.hi-boot You omitted the --make argument to ghc, so it is compiling only Main.hs, not the other modules. Regards, Malcolm |