|
Distribution.Simple.Setup | Portability | portable | Stability | alpha | Maintainer | Isaac Jones <ijones@syntaxpolice.org> |
|
|
|
Description |
Explanation: Data types and parser for the standard command-line
setup. Will also return commands it doesn't know about.
|
|
Synopsis |
|
module Distribution.Simple.Compiler | | | | data ConfigFlags = ConfigFlags {} | | emptyConfigFlags :: ProgramConfiguration -> ConfigFlags | | configureArgs :: ConfigFlags -> [String] | | data CopyFlags = CopyFlags {} | | | | emptyCopyFlags :: CopyDest -> CopyFlags | | data InstallFlags = InstallFlags {} | | emptyInstallFlags :: InstallFlags | | data HaddockFlags = HaddockFlags {} | | emptyHaddockFlags :: HaddockFlags | | data HscolourFlags = HscolourFlags {} | | emptyHscolourFlags :: HscolourFlags | | data BuildFlags = BuildFlags {} | | emptyBuildFlags :: ProgramConfiguration -> BuildFlags | | data CleanFlags = CleanFlags {} | | emptyCleanFlags :: CleanFlags | | data PFEFlags = PFEFlags {} | | data MakefileFlags = MakefileFlags {} | | emptyMakefileFlags :: MakefileFlags | | data RegisterFlags = RegisterFlags {} | | emptyRegisterFlags :: RegisterFlags | | data SDistFlags = SDistFlags {} | | parseGlobalArgs :: ProgramConfiguration -> [String] -> IO (Action, [String]) | | parseConfigureArgs :: ProgramConfiguration -> ConfigFlags -> [String] -> [OptDescr a] -> IO (ConfigFlags, [a], [String]) | | parseBuildArgs :: ProgramConfiguration -> BuildFlags -> [String] -> [OptDescr a] -> IO (BuildFlags, [a], [String]) | | parseCleanArgs :: CleanFlags -> [String] -> [OptDescr a] -> IO (CleanFlags, [a], [String]) | | parseMakefileArgs :: MakefileFlags -> [String] -> [OptDescr a] -> IO (MakefileFlags, [a], [String]) | | parseHscolourArgs :: HscolourFlags -> [String] -> [OptDescr a] -> IO (HscolourFlags, [a], [String]) | | parseHaddockArgs :: HaddockFlags -> [String] -> [OptDescr a] -> IO (HaddockFlags, [a], [String]) | | parseProgramaticaArgs :: [String] -> [OptDescr a] -> IO (PFEFlags, [a], [String]) | | parseTestArgs :: [String] -> [OptDescr a] -> IO (Verbosity, [a], [String]) | | parseInstallArgs :: InstallFlags -> [String] -> [OptDescr a] -> IO (InstallFlags, [a], [String]) | | parseSDistArgs :: [String] -> [OptDescr a] -> IO (SDistFlags, [a], [String]) | | parseRegisterArgs :: RegisterFlags -> [String] -> [OptDescr a] -> IO (RegisterFlags, [a], [String]) | | parseUnregisterArgs :: RegisterFlags -> [String] -> [OptDescr a] -> IO (RegisterFlags, [a], [String]) | | parseCopyArgs :: CopyFlags -> [String] -> [OptDescr a] -> IO (CopyFlags, [a], [String]) | | reqPathArg :: (FilePath -> a) -> ArgDescr a | | reqDirArg :: (FilePath -> a) -> ArgDescr a |
|
|
Documentation |
|
module Distribution.Simple.Compiler |
|
|
Constructors | ConfigCmd ConfigFlags | | BuildCmd | | CleanCmd | | CopyCmd CopyDest | | HscolourCmd | | HaddockCmd | | ProgramaticaCmd | | InstallCmd | | SDistCmd | | MakefileCmd | | TestCmd | | RegisterCmd | | UnregisterCmd | | HelpCmd | |
| Instances | |
|
|
|
Flags to configure command
| Constructors | ConfigFlags | | configPrograms :: ProgramConfiguration | All programs that cabal may run
| configHcFlavor :: (Maybe CompilerFlavor) | The "flavor" of the compiler, sugh as GHC or Hugs.
| configHcPath :: (Maybe FilePath) | given compiler location
| configHcPkg :: (Maybe FilePath) | given hc-pkg location
| configVanillaLib :: Bool | Enable vanilla library
| configProfLib :: Bool | Enable profiling in the library
| configSharedLib :: Bool | Build shared library
| configProfExe :: Bool | Enable profiling in the executables.
| configConfigureArgs :: [String] | Extra arguments to configure
| configOptimization :: Bool | Enable optimization.
| configPrefix :: (Maybe FilePath) | installation prefix
| configBinDir :: (Maybe FilePath) | installation dir for binaries,
| configLibDir :: (Maybe FilePath) | installation dir for object code libraries,
| configLibSubDir :: (Maybe FilePath) | subdirectory of libdir in which libs are installed
| configLibExecDir :: (Maybe FilePath) | installation dir for program executables,
| configDataDir :: (Maybe FilePath) | installation dir for read-only arch-independent data,
| configDataSubDir :: (Maybe FilePath) | subdirectory of datadir in which data files are installed
| configDocDir :: (Maybe FilePath) | installation dir for documentation
| configHtmlDir :: (Maybe FilePath) | installation dir for HTML documentation
| configInterfaceDir :: (Maybe FilePath) | installation dir for haddock interfaces
| configVerbose :: Verbosity | verbosity level
| configPackageDB :: PackageDB | the --user flag?
| configGHCiLib :: Bool | Enable compiling library for GHCi
| configSplitObjs :: Bool | Enable -split-objs with GHC
| configConfigurationsFlags :: [(String, Bool)] | |
|
| Instances | |
|
|
|
The default configuration of a package, before running configure,
most things are "Nothing", zero, etc.
|
|
|
Arguments to pass to a configure script, e.g. generated by
autoconf.
|
|
|
Flags to copy: (destdir, copy-prefix (backwards compat), verbosity)
| Constructors | | Instances | |
|
|
|
The location prefix for the copy command.
| Constructors | | Instances | |
|
|
|
|
|
Flags to install: (package db, verbosity)
| Constructors | | Instances | |
|
|
|
|
|
Constructors | | Instances | |
|
|
|
|
|
Constructors | | Instances | |
|
|
|
|
|
Constructors | | Instances | |
|
|
|
|
|
Constructors | | Instances | |
|
|
|
|
|
Constructors | | Instances | |
|
|
|
Constructors | | Instances | |
|
|
|
|
|
Flags to register and unregister: (user package, gen-script,
in-place, verbosity)
| Constructors | | Instances | |
|
|
|
|
|
Flags to sdist: (snapshot, verbosity)
| Constructors | | Instances | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Produced by Haddock version 0.8 |