diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-01-17 15:13:04 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-12 01:57:27 -0500 |
commit | da7f74797e8c322006eba385c9cbdce346dd1d43 (patch) | |
tree | 79a69eed3aa18414caf76b02a5c8dc7c7e6d5f54 /compiler/ghc.cabal.in | |
parent | f82a2f90ceda5c2bc74088fa7f6a7c8cb9c9756f (diff) | |
download | haskell-da7f74797e8c322006eba385c9cbdce346dd1d43.tar.gz |
Module hierarchy: ByteCode and Runtime (cf #13009)
Update haddock submodule
Diffstat (limited to 'compiler/ghc.cabal.in')
-rw-r--r-- | compiler/ghc.cabal.in | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index c965973403..84a912998f 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -156,7 +156,7 @@ Library c-sources: cbits/cutils.c cbits/genSym.c - ghci/keepCAFsForGHCi.c + cbits/keepCAFsForGHCi.c hs-source-dirs: . @@ -165,7 +165,6 @@ Library cmm coreSyn deSugar - ghci iface llvmGen main @@ -304,7 +303,7 @@ Library GHC.StgToCmm.Ticky GHC.StgToCmm.Utils GHC.StgToCmm.ExtCode - GHC.Runtime.Layout + GHC.Runtime.Heap.Layout CoreArity CoreFVs CoreLint @@ -380,13 +379,13 @@ Library GhcMake GhcPlugins GhcPrelude - DynamicLoading HeaderInfo HscMain HscStats HscTypes - InteractiveEval - InteractiveEvalTypes + GHC.Runtime.Eval + GHC.Runtime.Eval.Types + GHC.Runtime.Loader UnitInfo Packages PlatformConstants @@ -650,14 +649,14 @@ Library Dwarf.Types Dwarf.Constants GHC.ThToHs - ByteCodeTypes - ByteCodeAsm - ByteCodeGen - ByteCodeInstr - ByteCodeItbls - ByteCodeLink - Debugger - LinkerTypes - Linker - RtClosureInspect - GHCi + GHC.ByteCode.Types + GHC.ByteCode.Asm + GHC.ByteCode.Instr + GHC.ByteCode.InfoTable + GHC.ByteCode.Linker + GHC.CoreToByteCode + GHC.Runtime.Debugger + GHC.Runtime.Linker.Types + GHC.Runtime.Linker + GHC.Runtime.Heap.Inspect + GHC.Runtime.Interpreter |