diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-05-12 16:48:49 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-05-15 22:57:00 -0400 |
commit | 0e789418d36fa31f8f1bc18a159898f539f18203 (patch) | |
tree | a591e17f31931427c8c2a7f18a2502f5a2b2d1a3 | |
parent | 7c4dec9ee4c07a8fe184b3afa63662ea42f89ee6 (diff) | |
download | haskell-0e789418d36fa31f8f1bc18a159898f539f18203.tar.gz |
hadrian: Add bytestring as a boot package
Now since `bytestring` depends upon `template-haskell` we must rebulid
it since the boot compiler's `template-haskell` may not match
that of the compiler being built.
-rw-r--r-- | hadrian/src/Settings/Default.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hadrian/src/Settings/Default.hs b/hadrian/src/Settings/Default.hs index 81e27ed785..61fa87901b 100644 --- a/hadrian/src/Settings/Default.hs +++ b/hadrian/src/Settings/Default.hs @@ -62,6 +62,7 @@ stage0Packages :: Action [Package] stage0Packages = do cross <- flag CrossCompiling return $ [ binary + , bytestring , cabalSyntax , cabal , compareSizes |