1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
module Settings.Flavours.Validate (validateFlavour, slowValidateFlavour) where
import Expression
import Flavour
import Oracles.Flag
import {-# SOURCE #-} Settings.Default
-- Please update doc/flavours.md when changing this file.
validateFlavour :: Flavour
validateFlavour = werror $ defaultFlavour
{ name = "validate"
, args = defaultBuilderArgs <> validateArgs <> defaultPackageArgs
, libraryWays = mconcat [ pure [vanilla]
, notStage0 ? platformSupportsSharedLibs ? pure [dynamic]
]
, rtsWays = mconcat [ pure [vanilla, threaded, debug, logging, threadedDebug, threadedLogging]
, notStage0 ? platformSupportsSharedLibs ? pure
[ dynamic, threadedDynamic, debugDynamic, threadedDebugDynamic
, loggingDynamic, threadedLoggingDynamic
]
]
}
validateArgs :: Args
validateArgs = sourceArgs SourceArgs
{ hsDefault = mconcat [ stage0 ? pure ["-O0", "-H64m"]
-- See #11487
, notStage0 ? arg "-fllvm-fill-undef-with-garbage"
]
, hsLibrary = pure ["-O", "-dcore-lint", "-dno-debug-output"]
, hsCompiler = mconcat [ stage0 ? pure ["-O2", "-DDEBUG"]
, notStage0 ? pure ["-O", "-dcore-lint", "-dno-debug-output"]
]
, hsGhc = pure ["-O"] }
slowValidateFlavour :: Flavour
slowValidateFlavour = werror $ validateFlavour
{ name = "slow-validate"
, args = defaultBuilderArgs <> slowValidateArgs <> defaultPackageArgs
}
slowValidateArgs :: Args
slowValidateArgs =
mconcat [ validateArgs
, notStage0 ? arg "-DDEBUG"
]
|