Haskell Hierarchical Libraries (Cabal package)Source codeContentsIndex
Distribution.Simple.LocalBuildInfo
Portabilityportable
Stabilityalpha
MaintainerIsaac Jones <ijones@syntaxpolice.org>
Description
Definition of the LocalBuildInfo data type.
Synopsis
data LocalBuildInfo = LocalBuildInfo {
prefix :: FilePath
bindir :: FilePath
libdir :: FilePath
libsubdir :: FilePath
libexecdir :: FilePath
datadir :: FilePath
datasubdir :: FilePath
compiler :: Compiler
buildDir :: FilePath
packageDeps :: [PackageIdentifier]
withPrograms :: ProgramConfiguration
userConf :: Bool
withHappy :: (Maybe FilePath)
withAlex :: (Maybe FilePath)
withHsc2hs :: (Maybe FilePath)
withC2hs :: (Maybe FilePath)
withCpphs :: (Maybe FilePath)
withGreencard :: (Maybe FilePath)
withVanillaLib :: Bool
withProfLib :: Bool
withProfExe :: Bool
withGHCiLib :: Bool
splitObjs :: Bool
}
default_prefix :: IO String
default_bindir :: FilePath
default_libdir :: Compiler -> FilePath
default_libsubdir :: Compiler -> FilePath
default_libexecdir :: FilePath
default_datadir :: PackageDescription -> IO FilePath
default_datasubdir :: FilePath
mkLibDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkLibDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkBinDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkBinDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkLibexecDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkLibexecDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkDataDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkDataDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkHaddockDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkProgDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
absolutePath :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath -> FilePath
prefixRelPath :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath -> Maybe FilePath
substDir :: PackageDescription -> LocalBuildInfo -> String -> String
distPref :: FilePath
srcPref :: FilePath
autogenModulesDir :: LocalBuildInfo -> String
mkIncludeDir :: FilePath -> FilePath
Documentation
data LocalBuildInfo
Data cached after configuration step.
Constructors
LocalBuildInfo
prefix :: FilePathThe installation directory (eg. usrlocal, or C:Program Filesfoo-1.2 on Windows.
bindir :: FilePathThe bin directory
libdir :: FilePathThe lib directory
libsubdir :: FilePathSubdirectory of libdir into which libraries are installed
libexecdir :: FilePathThe lib directory
datadir :: FilePathThe data directory
datasubdir :: FilePathSubdirectory of datadir into which data files are installed
compiler :: CompilerThe compiler we're building with
buildDir :: FilePathWhere to put the result of building.
packageDeps :: [PackageIdentifier]Which packages we depend on, exactly. The PackageDescription specifies a set of build dependencies that must be satisfied in terms of version ranges. This field fixes those dependencies to the specific versions available on this machine for this compiler.
withPrograms :: ProgramConfiguration
userConf :: BoolWas this package configured with --user?
withHappy :: (Maybe FilePath)Might be the location of the Happy executable.
withAlex :: (Maybe FilePath)Might be the location of the Alex executable.
withHsc2hs :: (Maybe FilePath)Might be the location of the Hsc2hs executable.
withC2hs :: (Maybe FilePath)Might be the location of the C2hs executable.
withCpphs :: (Maybe FilePath)Might be the location of the Cpphs executable.
withGreencard :: (Maybe FilePath)Might be the location of the GreenCard executable.
withVanillaLib :: BoolWhether to build normal libs.
withProfLib :: BoolWhether to build profiling versions of libs.
withProfExe :: BoolWhether to build executables for profiling.
withGHCiLib :: BoolWhether to build libs suitable for use with GHCi.
splitObjs :: BoolUse -split-objs with GHC, if available
show/hide Instances
default_prefix :: IO String
default_bindir :: FilePath
default_libdir :: Compiler -> FilePath
default_libsubdir :: Compiler -> FilePath
default_libexecdir :: FilePath
default_datadir :: PackageDescription -> IO FilePath
default_datasubdir :: FilePath
mkLibDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkLibDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkBinDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkBinDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkLibexecDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkLibexecDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkDataDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkDataDirRel :: PackageDescription -> LocalBuildInfo -> CopyDest -> Maybe FilePath
mkHaddockDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
mkProgDir :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath
Directory for program modules (Hugs only).
absolutePath :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath -> FilePath
prefixRelPath :: PackageDescription -> LocalBuildInfo -> CopyDest -> FilePath -> Maybe FilePath
substDir :: PackageDescription -> LocalBuildInfo -> String -> String
distPref :: FilePath
srcPref :: FilePath
autogenModulesDir :: LocalBuildInfo -> String
The directory in which we put auto-generated modules
mkIncludeDir :: FilePath -> FilePath
The place where install-includes are installed, relative to libdir
Produced by Haddock version 0.8