cvs commit: fptools/ghc/compiler/compMan CompManager.lhs
Simon Marlow
simonmar@glass.cse.ogi.edu
Wed, 28 Feb 2001 09:57:53 -0800
simonmar 2001/02/28 09:57:53 PST
Modified files:
ghc/compiler/compMan CompManager.lhs
Log:
Compiling a module outside of a running GHCi and expecting GHCi to
pick it up when you do ':r' ain't gonna work.
We thought it would, but there's a problem with module versions and
the recompilation machinery, namely that the outside compiler doesn't
know about the versions being used internally in the running GHCi.
The "right" solution is to implement a ':compile' command in GHCi, but
we aren't going to do that before the release.
This commit disables the picking up of newly compiled modules, until
you do a full load (i.e. :load).
Revision Changes Path
1.60 +46 -53 fptools/ghc/compiler/compMan/CompManager.lhs