Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- data FutharkConfig = FutharkConfig {}
- newFutharkConfig :: FutharkConfig
- data Verbosity
Documentation
data FutharkConfig Source #
The compiler configuration. This only contains options related to core compiler functionality, such as reading the initial program and running passes. Options related to code generation are handled elsewhere.
FutharkConfig | |
|
newFutharkConfig :: FutharkConfig Source #
The default compiler configuration.
How much information to print to stderr while the compiler is running.
NotVerbose | Silence is golden. |
Verbose | Print messages about which pass is running. |
VeryVerbose | Also print logs from individual passes. |