cvs commit: fptools/ghc/compiler/main DriverFlags.hs DriverPipeline.hs DriverState.hs

Simon Marlow simonmar@glass.cse.ogi.edu
Wed, 9 May 2001 02:38:18 -0700


simonmar    2001/05/09 02:38:18 PDT

  Modified files:
    ghc/compiler/main    DriverFlags.hs DriverPipeline.hs 
                         DriverState.hs 
  Log:
  Add a new option: -hcsuf <suffix> which renames the .hc suffix to
  <suffix> for this compilation, in the same way as -osuf and -hisuf.
  
  To even things up, remove partial support for '-ohi -', which
  allegedly dumped the .hi file to stdout but in reality never worked.
  It's a strange thing to want to do anyway, but in any case you could
  always say '-ohi /dev/stdout', or even 'ghc Foo.hs && cat Foo.hi'.
  
  Revision  Changes    Path
  1.53      +3 -4      fptools/ghc/compiler/main/DriverFlags.hs
  1.68      +6 -5      fptools/ghc/compiler/main/DriverPipeline.hs
  1.38      +5 -8      fptools/ghc/compiler/main/DriverState.hs