packages feed

ghc-events-0.3.0.1: ghc-events.cabal

name:             ghc-events
version:          0.3.0.1
synopsis:         Library and tool for parsing .eventlog files from GHC
description:      Parses .eventlog files emitted by GHC 6.12.1 and later.
                  Includes the show-ghc-events tool to dump an event
                  log file as text.
category:         Development, GHC, Debug, Profiling, Trace
license:          BSD3
license-file:     LICENSE
author:           Donnie Jones <donnie@darthik.com>, 
                  Simon Marlow <marlowsd@gmail.com>,
                  Paul Bone <pbone@csse.unimelb.edu.au>,
                  Duncan Coutts <duncan@well-typed.com>
maintainer:       Simon Marlow <marlowsd@gmail.com>
bug-reports:      http://trac.haskell.org/ThreadScope/
build-type:       Simple
tested-with:      GHC == 6.12.3, GHC == 7.0.4, GHC == 7.2.1
cabal-version:    >= 1.8
extra-source-files: GHC/RTS/EventLogFormat.h,
                    AUTHORS,
                    test/*.eventlog

source-repository head
  type: darcs
  location: http://code.haskell.org/ghc-events/

library
  build-depends:    base       == 4.*,
                    mtl        >= 1.1 && < 2.1,
                    containers >= 0.2 && < 0.5,
                    binary     == 0.5.*,
                    bytestring == 0.9.*,
                    array      == 0.3.*
  exposed-modules:  GHC.RTS.Events
  other-modules:    GHC.RTS.EventParserUtils,
                    GHC.RTS.EventTypes
  extensions:	    CPP

executable ghc-events-show
  main-is:          ShowGhcEvents.hs
  build-depends:    base, mtl, containers, binary, bytestring, array

executable ghc-events-merge
  main-is:          MergeGhcEvents.hs
  build-depends:    base, mtl, containers, binary, bytestring, array

test-suite test-versions
  type:             exitcode-stdio-1.0
  main-is:          test/TestVersions.hs
  build-depends:    base, mtl, containers, binary, bytestring, array