[commit: hadrian] master: Add ghc-heap (c0292ff)

git at git.haskell.org git at git.haskell.org
Fri Jun 8 00:02:31 UTC 2018


Repository : ssh://git@git.haskell.org/hadrian

On branch  : master
Link       : http://git.haskell.org/hadrian.git/commitdiff/c0292ffcaee940cfd3a81a878a680e0e273c10bc

>---------------------------------------------------------------

commit c0292ffcaee940cfd3a81a878a680e0e273c10bc
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date:   Sat May 26 00:17:48 2018 +0200

    Add ghc-heap


>---------------------------------------------------------------

c0292ffcaee940cfd3a81a878a680e0e273c10bc
 src/GHC.hs          | 13 +++++++------
 src/GHC/Packages.hs |  5 +++--
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/src/GHC.hs b/src/GHC.hs
index 61bfb7f..bdb211b 100644
--- a/src/GHC.hs
+++ b/src/GHC.hs
@@ -3,12 +3,12 @@ module GHC (
     -- * GHC packages
     array, base, binary, bytestring, cabal, checkPpr, compareSizes, compiler,
     containers, deepseq, deriveConstants, directory, filepath, genapply,
-    genprimopcode, ghc, ghcBoot, ghcBootTh, ghcCabal, ghcCompact, ghci, ghcPkg,
-    ghcPrim, ghcTags, ghcSplit, haddock, haskeline, hsc2hs, hp2ps, hpc, hpcBin,
-    integerGmp, integerSimple, iservBin, libffi, mtl, parsec, parallel, pretty,
-    primitive, process, rts, runGhc, stm, templateHaskell, terminfo, text, time,
-    touchy, transformers, unlit, unix, win32, xhtml, ghcPackages, isGhcPackage,
-    defaultPackages, testsuitePackages,
+    genprimopcode, ghc, ghcBoot, ghcBootTh, ghcCabal, ghcCompact, ghcHeap, ghci,
+    ghcPkg, ghcPrim, ghcTags, ghcSplit, haddock, haskeline, hsc2hs, hp2ps, hpc,
+    hpcBin, integerGmp, integerSimple, iservBin, libffi, mtl, parsec, parallel,
+    pretty, primitive, process, rts, runGhc, stm, templateHaskell, terminfo,
+    text, time, touchy, transformers, unlit, unix, win32, xhtml, ghcPackages,
+    isGhcPackage, defaultPackages, testsuitePackages,
 
     -- * Package information
     programName, nonCabalContext, nonHsMainPackage, autogenPath, installStage,
@@ -46,6 +46,7 @@ stage0Packages = do
              , ghc
              , ghcBoot
              , ghcBootTh
+             , ghcHeap
              , ghci
              , ghcPkg
              , ghcTags
diff --git a/src/GHC/Packages.hs b/src/GHC/Packages.hs
index 79830dc..e7ede7f 100644
--- a/src/GHC/Packages.hs
+++ b/src/GHC/Packages.hs
@@ -13,8 +13,8 @@ ghcPackages :: [Package]
 ghcPackages =
     [ array, base, binary, bytestring, cabal, checkPpr, compareSizes, compiler
     , containers, deepseq, deriveConstants, directory, filepath, genapply
-    , genprimopcode, ghc, ghcBoot, ghcBootTh, ghcCompact, ghci, ghcPkg, ghcPrim
-    , ghcTags, haddock, haskeline, hsc2hs, hp2ps, hpc, hpcBin, integerGmp
+    , genprimopcode, ghc, ghcBoot, ghcBootTh, ghcCompact, ghcHeap, ghci, ghcPkg
+    , ghcPrim, ghcTags, haddock, haskeline, hsc2hs, hp2ps, hpc, hpcBin, integerGmp
     , integerSimple, iservBin, libffi, mtl, parsec, parallel, pretty, primitive
     , process, rts, runGhc, stm, templateHaskell, terminfo, text, time, touchy
     , transformers, unlit, unix, win32, xhtml ]
@@ -44,6 +44,7 @@ ghcBoot             = hsLib  "ghc-boot"
 ghcBootTh           = hsLib  "ghc-boot-th"
 ghcCabal            = hsUtil "ghc-cabal"
 ghcCompact          = hsLib  "ghc-compact"
+ghcHeap             = hsLib  "ghc-heap"
 ghci                = hsLib  "ghci"
 ghcPkg              = hsUtil "ghc-pkg"
 ghcPrim             = hsLib  "ghc-prim"



More information about the ghc-commits mailing list