[commit: ghc] wip/nfs-locking: Drop dll-split (12e7d5f)
git at git.haskell.org
git at git.haskell.org
Fri Oct 27 00:58:49 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/12e7d5fc30e3776c29f3aba16985c72888f1a109/ghc
>---------------------------------------------------------------
commit 12e7d5fc30e3776c29f3aba16985c72888f1a109
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date: Wed Aug 30 02:13:03 2017 +0100
Drop dll-split
See #404
>---------------------------------------------------------------
12e7d5fc30e3776c29f3aba16985c72888f1a109
src/GHC.hs | 17 +++++++----------
src/Rules.hs | 4 ++--
2 files changed, 9 insertions(+), 12 deletions(-)
diff --git a/src/GHC.hs b/src/GHC.hs
index 7a9ff560..554cdae 100644
--- a/src/GHC.hs
+++ b/src/GHC.hs
@@ -2,7 +2,7 @@
module GHC (
-- * GHC packages
array, base, binary, bytestring, cabal, checkApiAnnotations, compareSizes,
- compiler, containers, deepseq, deriveConstants, directory, dllSplit, filepath,
+ 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,
@@ -30,13 +30,12 @@ import Oracles.Setting
ghcPackages :: [Package]
ghcPackages =
[ array, base, binary, bytestring, cabal, checkApiAnnotations, compareSizes
- , compiler, containers, deepseq, deriveConstants, directory, dllSplit
- , filepath, genapply, genprimopcode, ghc, ghcBoot, ghcBootTh, ghcCabal
- , ghcCompact, 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 ]
+ , compiler, containers, deepseq, deriveConstants, directory, filepath
+ , genapply, genprimopcode, ghc, ghcBoot, ghcBootTh, ghcCabal, ghcCompact
+ , 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 ]
-- TODO: Optimise by switching to sets of packages.
isGhcPackage :: Package -> Bool
@@ -55,7 +54,6 @@ containers = hsLib "containers"
deepseq = hsLib "deepseq"
deriveConstants = hsUtil "deriveConstants"
directory = hsLib "directory"
-dllSplit = hsUtil "dll-split"
filepath = hsLib "filepath"
genapply = hsUtil "genapply"
genprimopcode = hsUtil "genprimopcode"
@@ -144,7 +142,6 @@ stage0Packages = do
, compareSizes
, compiler
, deriveConstants
- , dllSplit
, genapply
, genprimopcode
, ghc
diff --git a/src/Rules.hs b/src/Rules.hs
index 09610d7..fcf3f65 100644
--- a/src/Rules.hs
+++ b/src/Rules.hs
@@ -126,5 +126,5 @@ oracleRules = do
Oracles.ModuleFiles.moduleFilesOracle
programsStage1Only :: [Package]
-programsStage1Only = [ deriveConstants, dllSplit, genapply, genprimopcode, ghc
- , ghcCabal, ghcPkg, hp2ps, hpc, hsc2hs, runGhc ]
+programsStage1Only = [ deriveConstants, genapply, genprimopcode, ghc, ghcCabal
+ , ghcPkg, hp2ps, hpc, hsc2hs, runGhc ]
More information about the ghc-commits
mailing list