-
Notifications
You must be signed in to change notification settings - Fork 3
/
ghc-prof.cabal
107 lines (101 loc) · 2.07 KB
/
ghc-prof.cabal
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
cabal-version: 2.4
name: ghc-prof
version: 1.4.1.12
synopsis: Library for parsing GHC time and allocation profiling reports
description: ghc-prof is a library for parsing GHC time and allocation profiling reports.
homepage: https://github.com/maoe/ghc-prof
license: BSD-3-Clause
license-file: LICENSE
author: Mitsutoshi Aoe
maintainer: Mitsutoshi Aoe <[email protected]>
copyright: Copyright (C) 2013-2022 Mitsutoshi Aoe
category: Development
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
tested-with: GHC == 8.0.2
|| == 8.2.2
|| == 8.4.2
|| == 8.4.3
|| == 8.4.4
|| == 8.6.1
|| == 8.6.2
|| == 8.6.3
|| == 8.6.4
|| == 8.6.5
|| == 8.8.1
|| == 8.8.2
|| == 8.8.3
|| == 8.8.4
|| == 8.10.1
|| == 8.10.2
|| == 8.10.3
|| == 8.10.4
|| == 8.10.5
|| == 8.10.6
|| == 8.10.7
|| == 9.0.1
|| == 9.0.2
|| == 9.2.1
|| == 9.2.2
|| == 9.4.3
flag dump
description: Build the executable "dump"
default: False
library
exposed-modules:
GHC.Prof
GHC.Prof.Parser
GHC.Prof.Types
GHC.Prof.CostCentreTree
other-modules:
Control.Monad.Extras
build-depends:
base >= 4.6 && < 4.18
, attoparsec < 0.15
, containers >= 0.5 && < 0.7
, scientific < 0.4
, text
, time
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
executable dump
if flag(dump)
buildable: True
else
buildable: False
main-is: dump.hs
hs-source-dirs: bin
build-depends:
base
, containers
, ghc-prof
, scientific < 0.4
, text
ghc-options: -Wall -rtsopts
default-language: Haskell2010
test-suite regression
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Regression.hs
build-depends:
attoparsec >= 0.10
, base
, containers
, directory
, filepath
, ghc-prof
, process
, tasty < 1.5
, tasty-hunit >= 0.9.1 && < 0.11
, temporary
, text
ghc-options: -Wall
if impl(ghc >= 8.0)
ghc-options: -Wno-unused-imports
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/maoe/ghc-prof.git