blob: 25ea5b5b4c7618d8b4861ec35b0b242ce7c1ec9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
HmakeConfig
{ defaultCompiler = "/usr/bin/nhc98"
, knownCompilers =
[ CompilerConfig
{ compilerStyle = nhc98
, compilerPath = "/usr/bin/nhc98"
, compilerVersion = "v1.12"
, includePaths = ["/usr/include/nhc98"]
, cppSymbols = ["__NHC__"]
, extraCompilerFlags = []
, isHaskell98 = True
}
, CompilerConfig
{ compilerStyle = nhc98
, compilerPath = "nhc98"
, compilerVersion = "v1.12"
, includePaths = ["/usr/include/nhc98"]
, cppSymbols = ["__NHC__"]
, extraCompilerFlags = []
, isHaskell98 = True
}
]
}
|