[Git][ghc/ghc][wip/T24652] Remove unecessary stage0 packages
Teo Camarasu (@teo)
gitlab at gitlab.haskell.org
Wed Apr 17 14:41:03 UTC 2024
Teo Camarasu pushed to branch wip/T24652 at Glasgow Haskell Compiler / GHC
Commits:
9753bd03 by Teo Camarasu at 2024-04-17T15:39:16+01:00
Remove unecessary stage0 packages
Historically quite a few packages had to be stage0 as they depended on
`template-haskell` and that was stage0. In #23536 we made it so that was
no longer the case. This allows us to remove a bunch of packages from
this list.
A few still remain. In particular `os-string` is a new package and hence
isn't bundled with boot compilers. Once that becomes widespread we can
remove even more!
Resolves #24652
- - - - -
1 changed file:
- hadrian/src/Settings/Default.hs
Changes:
=====================================
hadrian/src/Settings/Default.hs
=====================================
@@ -80,39 +80,31 @@ stageBootPackages = return
stage0Packages :: Action [Package]
stage0Packages = do
cross <- flag CrossCompiling
- return $ [ binary
- , bytestring
- , cabalSyntax
+ return $ [ cabalSyntax
, cabal
, compiler
- , containers
- , directory
- , process
- , exceptions
- , filepath
+ , directory -- depends on filepath
+ , filepath -- depends on os-string
, ghc
- , runGhc
, ghcBoot
, ghcBootThNext
- , ghcPlatform
, ghcHeap
+ , ghcPkg
+ , ghcPlatform
, ghcToolchain
, ghci
- , ghcPkg
, haddock
- , hsc2hs
+ , hp2ps
, hpc
, hpcBin
- , mtl
- , osString
- , parsec
+ , hsc2hs
+ , osString -- new library not yet present for boot compilers
+ , process -- depends on filepath
+ , runGhc
, semaphoreCompat
- , time
, templateHaskellNext
- , text
- , transformers
+ , time -- depends on win32
, unlit
- , hp2ps
, if windowsHost then win32 else unix
]
++ [ terminfo | not windowsHost, not cross ]
@@ -143,12 +135,14 @@ stage1Packages = do
[ libraries0 -- Build all Stage0 libraries in Stage1
, [ array
, base
+ , binary
+ , bytestring
, containers
, deepseq
, exceptions
, ghc
- , ghcBootTh
, ghcBignum
+ , ghcBootTh
, ghcCompact
, ghcExperimental
, ghcInternal
@@ -158,11 +152,15 @@ stage1Packages = do
, hp2ps
, hsc2hs
, integerGmp
+ , mtl
+ , parsec
, pretty
, rts
, semaphoreCompat
- , templateHaskell
, stm
+ , templateHaskell
+ , text
+ , transformers
, unlit
, xhtml
, if winTarget then win32 else unix
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9753bd0395057f4a3b53c2b2475c2594c5e630d8
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9753bd0395057f4a3b53c2b2475c2594c5e630d8
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20240417/b8a991c8/attachment-0001.html>
More information about the ghc-commits
mailing list