summaryrefslogtreecommitdiff
path: root/libraries/ghc-heap/ghc-heap.cabal.in
blob: a80d9f7ad3e6a3a450cb63b26a86eab491adadd6 (plain)
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
cabal-version:  3.0
name:           ghc-heap
version:        @ProjectVersionMunged@
license:        BSD-3-Clause
license-file:   LICENSE
maintainer:     libraries@haskell.org
bug-reports:    https://gitlab.haskell.org/ghc/ghc/issues/new
synopsis:       Functions for walking GHC's heap
category:       GHC
description:
    This package provides functions for walking the GHC heap data structures
    and retrieving information about those data structures.

build-type:     Simple
tested-with:    GHC==7.11

source-repository head
  type:     git
  location: https://gitlab.haskell.org/ghc/ghc.git
  subdir:   libraries/ghc-heap

library
  default-language: Haskell2010

  build-depends:    base             >= 4.9.0 && < 5.0
                  , ghc-prim         > 0.2 && < 0.8
                  , rts              == 1.0.*

  ghc-options:      -Wall
  cmm-sources:      cbits/HeapPrim.cmm

  default-extensions: NoImplicitPrelude

  exposed-modules:  GHC.Exts.Heap
                    GHC.Exts.Heap.Closures
                    GHC.Exts.Heap.ClosureTypes
                    GHC.Exts.Heap.Constants
                    GHC.Exts.Heap.InfoTable
                    GHC.Exts.Heap.InfoTable.Types
                    GHC.Exts.Heap.InfoTableProf
                    GHC.Exts.Heap.Utils