mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-24 13:11:57 +01:00
add installflag for dynamic executables
This commit is contained in:
parent
4b651e8865
commit
f6b95190f1
@ -30,6 +30,7 @@ data InstallFlags = InstallFlags
|
|||||||
, ifEnableTests :: !Bool
|
, ifEnableTests :: !Bool
|
||||||
, ifEnableHaddock :: !Bool
|
, ifEnableHaddock :: !Bool
|
||||||
, ifEnableLibProfiling :: !Bool
|
, ifEnableLibProfiling :: !Bool
|
||||||
|
, ifEnableExecDyn :: !Bool
|
||||||
, ifVerbose :: !Bool
|
, ifVerbose :: !Bool
|
||||||
, ifSkipCheck :: !Bool
|
, ifSkipCheck :: !Bool
|
||||||
} deriving (Show)
|
} deriving (Show)
|
||||||
|
|||||||
@ -149,6 +149,9 @@ main =
|
|||||||
switch
|
switch
|
||||||
(long "enable-library-profiling" <>
|
(long "enable-library-profiling" <>
|
||||||
help "Enable profiling when building") <*>
|
help "Enable profiling when building") <*>
|
||||||
|
switch
|
||||||
|
(long "enable-executable-dynamic" <>
|
||||||
|
help "Enable dynamic executables when building") <*>
|
||||||
switch
|
switch
|
||||||
(long "verbose" <> short 'v' <>
|
(long "verbose" <> short 'v' <>
|
||||||
help "Output verbose detail about the build steps") <*>
|
help "Output verbose detail about the build steps") <*>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user