blob: 3467ff4ced0794b8b5cb75e40bbdffabaae07122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module GHC.Driver.Pipeline where
import GHC.Driver.Env.Types ( HscEnv )
import GHC.ForeignSrcLang ( ForeignSrcLang )
import GHC.Prelude (FilePath, IO)
import GHC.Unit.Module.Location (ModLocation)
import GHC.Unit.Module.Name (ModuleName)
import GHC.Driver.Session (DynFlags)
-- These are used in GHC.Driver.Pipeline.Execute, but defined in terms of runPipeline
compileForeign :: HscEnv -> ForeignSrcLang -> FilePath -> IO FilePath
compileEmptyStub :: DynFlags -> HscEnv -> FilePath -> ModLocation -> ModuleName -> IO ()
|