Cabal-1.8.0.2: A framework for packaging Haskell softwareSource codeContentsIndex
Distribution.Simple.Build
Portabilityportable
Maintainercabal-devel@haskell.org
Description
This is the entry point to actually building the modules in a package. It doesn't actually do much itself, most of the work is delegated to compiler-specific actions. It does do some non-compiler specific bits like running pre-processors.
Synopsis
build :: PackageDescription -> LocalBuildInfo -> BuildFlags -> [PPSuffixHandler] -> IO ()
initialBuildSteps :: FilePath -> PackageDescription -> LocalBuildInfo -> Verbosity -> [PPSuffixHandler] -> IO ()
writeAutogenFiles :: Verbosity -> PackageDescription -> LocalBuildInfo -> IO ()
Documentation
buildSource
:: PackageDescriptionmostly information from the .cabal file
-> LocalBuildInfoConfiguration information
-> BuildFlagsFlags that the user passed to build
-> [PPSuffixHandler]preprocessors to run before compiling
-> IO ()
Build the libraries and executables in this package.
initialBuildStepsSource
:: FilePathdist prefix
-> PackageDescriptionmostly information from the .cabal file
-> LocalBuildInfoConfiguration information
-> VerbosityThe verbosity to use
-> [PPSuffixHandler]preprocessors to run before compiling
-> IO ()
writeAutogenFiles :: Verbosity -> PackageDescription -> LocalBuildInfo -> IO ()Source
Generate and write out the Paths_pkg.hs and cabal_macros.h files
Produced by Haddock version 2.6.0