cvs commit: fptools/ghc/compiler/main DriverPipeline.hs HscMain.lhs fptools/ghc/compiler/compMan CompManager.lhs

Simon Marlow simonmar@glass.cse.ogi.edu
Thu, 15 Mar 2001 03:26:28 -0800


simonmar    2001/03/15 03:26:27 PST

  Modified files:
    ghc/compiler/main    DriverPipeline.hs HscMain.lhs 
    ghc/compiler/compMan CompManager.lhs 
  Log:
  Do a better job of telling the user whether we're interpreting a
  module or using an existing object file.
  
  eg.
  
     Main> :load A
     Skipping  D                ( D.hs, D.o )
     Compiling C                ( C.hs, interpreted )
     Skipping  B                ( B.hs, B.o )
     Compiling Main             ( A.hs, interpreted )
     Main>
  
  Revision  Changes    Path
  1.55      +7 -4      fptools/ghc/compiler/main/DriverPipeline.hs
  1.111     +22 -12    fptools/ghc/compiler/main/HscMain.lhs
  1.65      +18 -32    fptools/ghc/compiler/compMan/CompManager.lhs