Safe Haskell | None |
---|---|
Language | Haskell2010 |
Stack.Build
Description
Build the project.
Synopsis
- build :: HasEnvConfig env => Maybe (Set (Path Abs File) -> IO ()) -> RIO env ()
- loadPackage :: (HasBuildConfig env, HasSourceMap env) => PackageLocationImmutable -> Map FlagName Bool -> [Text] -> [Text] -> RIO env Package
- mkBaseConfigOpts :: HasEnvConfig env => BuildOptsCLI -> RIO env BaseConfigOpts
- queryBuildInfo :: HasEnvConfig env => [Text] -> RIO env ()
- splitObjsWarning :: String
- newtype CabalVersionException = CabalVersionException {}
Documentation
Arguments
:: HasEnvConfig env | |
=> Maybe (Set (Path Abs File) -> IO ()) | callback after discovering all local files |
-> RIO env () |
Build.
If a buildLock is passed there is an important contract here. That lock must protect the snapshot, and it must be safe to unlock it if there are no further modifications to the snapshot to be performed by this build.
Arguments
:: (HasBuildConfig env, HasSourceMap env) | |
=> PackageLocationImmutable | |
-> Map FlagName Bool | |
-> [Text] | GHC options |
-> [Text] | Cabal configure options |
-> RIO env Package |
Provide a function for loading package information from the package index
mkBaseConfigOpts :: HasEnvConfig env => BuildOptsCLI -> RIO env BaseConfigOpts Source #
Get the BaseConfigOpts
necessary for constructing configure options
Arguments
:: HasEnvConfig env | |
=> [Text] | selectors |
-> RIO env () |
Query information about the build and print the result to stdout in YAML format.
newtype CabalVersionException Source #
Constructors
CabalVersionException | |
Fields |
Instances
Show CabalVersionException Source # | |
Defined in Stack.Build Methods showsPrec :: Int -> CabalVersionException -> ShowS # show :: CabalVersionException -> String # showList :: [CabalVersionException] -> ShowS # | |
Exception CabalVersionException Source # | |
Defined in Stack.Build |