forked from haskell/ghc-events
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ghc-events.cabal
86 lines (81 loc) · 3.81 KB
/
ghc-events.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
name: ghc-events
version: 0.5.0.0
synopsis: Library and tool for parsing .eventlog files from GHC
description: Parses .eventlog files emitted by GHC 6.12.1 and later.
Includes the ghc-events tool permitting, in particular,
to dump an event log file as text.
category: Development, GHC, Debug, Profiling, Trace
license: BSD3
license-file: LICENSE
author: Donnie Jones <[email protected]>,
Simon Marlow <[email protected]>,
Paul Bone <[email protected]>,
Mischa Dieterle <[email protected]>,
Thomas Horstmeyer <[email protected]>,
Duncan Coutts <[email protected]>,
Nicolas Wu <[email protected]>,
Jost Berthold <[email protected]>
Mikolaj Konarski <[email protected]>
Karolis Velicka <[email protected]>
maintainer: Simon Marlow <[email protected]>
bug-reports: https://github.com/haskell/ThreadScope/issues
build-type: Simple
tested-with: GHC == 6.12.3, GHC == 7.4.1, GHC == 7.6.1, GHC == 7.6.3, GHC == 7.8.2, GHC == 7.8.3, GHC == 7.10.1
cabal-version: >= 1.8
extra-source-files: GHC/RTS/EventLogFormat.h
test/queens-ghc-6.12.1.eventlog
test/queens-ghc-6.12.1.eventlog.reference
test/queens-ghc-7.0.2.eventlog
test/queens-ghc-7.0.2.eventlog.reference
test/mandelbrot-mmc-2011-06-14.eventlog
test/mandelbrot-mmc-2011-06-14.eventlog.reference
test/mdlLogMPI1.eventlog
test/mdlLogMPI1.eventlog.reference
test/pre77stop.eventlog
test/pre77stop.eventlog.reference
test/782stop.eventlog
test/782stop.eventlog.reference
test/783stop.eventlog
test/783stop.eventlog.reference
test/Utils.hs
test/stop.hs
source-repository head
type: git
location: [email protected]:haskell/ghc-events.git
library
build-depends: base == 4.*,
containers >= 0.2 && < 0.6,
binary >= 0.7 && < 0.8,
bytestring >= 0.9.0,
network == 2.6.0.2,
array >= 0.2 && < 0.6
exposed-modules: GHC.RTS.Events,
GHC.RTS.LiveLogging
GHC.RTS.EventsIncremental
GHC.RTS.Events.Merge
GHC.RTS.Events.Analysis
GHC.RTS.Events.Analysis.Capability
GHC.RTS.Events.Analysis.SparkThread
GHC.RTS.Events.Analysis.Thread
other-modules: GHC.RTS.EventParserUtils,
GHC.RTS.EventTypes
include-dirs: GHC/RTS
extensions: RecordWildCards, NamedFieldPuns, BangPatterns, PatternGuards
other-extensions: FlexibleContexts, CPP
executable ghc-events
main-is: GhcEvents.hs
build-depends: base, containers, binary, bytestring, array, network
extensions: RecordWildCards, NamedFieldPuns, BangPatterns, PatternGuards
ghc-options: -debug
test-suite test-versions
type: exitcode-stdio-1.0
main-is: TestVersions.hs
hs-source-dirs: ., test
build-depends: base, containers, binary, bytestring, array
extensions: RecordWildCards, NamedFieldPuns, BangPatterns, PatternGuards
test-suite write-merge
type: exitcode-stdio-1.0
main-is: WriteMerge.hs
hs-source-dirs: ., test
build-depends: base, containers, binary, bytestring, array
extensions: RecordWildCards, NamedFieldPuns, BangPatterns, PatternGuards