Safe Haskell | None |
---|---|
Language | Haskell98 |
- data GhcOptions = GhcOptions {
- ghcOptMode :: Flag GhcMode
- ghcOptExtra :: [String]
- ghcOptExtraDefault :: [String]
- ghcOptInputFiles :: [FilePath]
- ghcOptInputModules :: [ModuleName]
- ghcOptOutputFile :: Flag FilePath
- ghcOptOutputDynFile :: Flag FilePath
- ghcOptSourcePathClear :: Flag Bool
- ghcOptSourcePath :: [FilePath]
- ghcOptPackageName :: Flag PackageId
- ghcOptPackageDBs :: PackageDBStack
- ghcOptPackages :: [(InstalledPackageId, PackageId)]
- ghcOptHideAllPackages :: Flag Bool
- ghcOptNoAutoLinkPackages :: Flag Bool
- ghcOptLinkLibs :: [FilePath]
- ghcOptLinkLibPath :: [FilePath]
- ghcOptLinkOptions :: [String]
- ghcOptLinkFrameworks :: [String]
- ghcOptNoLink :: Flag Bool
- ghcOptLinkNoHsMain :: Flag Bool
- ghcOptCcOptions :: [String]
- ghcOptCppOptions :: [String]
- ghcOptCppIncludePath :: [FilePath]
- ghcOptCppIncludes :: [FilePath]
- ghcOptFfiIncludes :: [FilePath]
- ghcOptLanguage :: Flag Language
- ghcOptExtensions :: [Extension]
- ghcOptExtensionMap :: [(Extension, String)]
- ghcOptOptimisation :: Flag GhcOptimisation
- ghcOptProfilingMode :: Flag Bool
- ghcOptSplitObjs :: Flag Bool
- ghcOptGHCiScripts :: [FilePath]
- ghcOptHiSuffix :: Flag String
- ghcOptObjSuffix :: Flag String
- ghcOptDynHiSuffix :: Flag String
- ghcOptDynObjSuffix :: Flag String
- ghcOptHiDir :: Flag FilePath
- ghcOptObjDir :: Flag FilePath
- ghcOptOutputDir :: Flag FilePath
- ghcOptStubDir :: Flag FilePath
- ghcOptDynLinkMode :: Flag GhcDynLinkMode
- ghcOptShared :: Flag Bool
- ghcOptFPic :: Flag Bool
- ghcOptDylibName :: Flag String
- ghcOptVerbosity :: Flag Verbosity
- ghcOptCabal :: Flag Bool
- data GhcMode
- data GhcOptimisation
- data GhcDynLinkMode
- ghcInvocation :: ConfiguredProgram -> GhcOptions -> ProgramInvocation
- renderGhcOptions :: Version -> GhcOptions -> [String]
- runGHC :: Verbosity -> ConfiguredProgram -> GhcOptions -> IO ()
Documentation
data GhcOptions Source
A structured set of GHC options/flags
GhcOptions | |
|
GhcModeCompile | ghc -c |
GhcModeLink | ghc |
GhcModeMake | ghc --make |
GhcModeInteractive |
|
GhcModeAbiHash |
|
data GhcOptimisation Source
data GhcDynLinkMode Source
GhcStaticOnly | -static |
GhcDynamicOnly | -dynamic |
GhcStaticAndDynamic | -static -dynamic-too |
renderGhcOptions :: Version -> GhcOptions -> [String] Source
runGHC :: Verbosity -> ConfiguredProgram -> GhcOptions -> IO () Source