summaryrefslogtreecommitdiff
path: root/hadrian/src
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-05-24 10:59:57 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-05-30 13:44:50 -0400
commitcac8c7bb098002ddce0ef7c1e4429940d22d8cc2 (patch)
tree547f1dba2414774d0c2fd6d2c5e5e838d22e00ad /hadrian/src
parent6656f0165a30fc2a22208532ba384fc8e2f11b46 (diff)
downloadhaskell-cac8c7bb098002ddce0ef7c1e4429940d22d8cc2.tar.gz
hadrian: Fix building from source-dist without alex/happy
This fixes two bugs which were adding dependencies on alex/happy when building from a source dist. * When we try to pass `--with-alex` and `--with-happy` to cabal when configuring but the builders are not set. This is fixed by making them optional. * When we configure, cabal requires alex/happy because of the build-tool-depends fields. These are now made optional with a cabal flag (build-tool-depends) for compiler/hpc-bin/genprimopcode. Fixes #21627
Diffstat (limited to 'hadrian/src')
-rw-r--r--hadrian/src/Builder.hs4
-rw-r--r--hadrian/src/Settings/Packages.hs9
2 files changed, 13 insertions, 0 deletions
diff --git a/hadrian/src/Builder.hs b/hadrian/src/Builder.hs
index 160eb44f7a..b80ac59f8d 100644
--- a/hadrian/src/Builder.hs
+++ b/hadrian/src/Builder.hs
@@ -390,6 +390,10 @@ instance H.Builder Builder where
isOptional :: Builder -> Bool
isOptional = \case
Objdump -> True
+ -- alex and happy are not required when building source distributions
+ -- and ./configure will complain if they are not available when building in-tree
+ Happy -> True
+ Alex -> True
_ -> False
-- | Determine the location of a system 'Builder'.
diff --git a/hadrian/src/Settings/Packages.hs b/hadrian/src/Settings/Packages.hs
index 85fd0812f6..871e7235f8 100644
--- a/hadrian/src/Settings/Packages.hs
+++ b/hadrian/src/Settings/Packages.hs
@@ -73,6 +73,7 @@ packageArgs = do
, builder (Cabal Flags) ? mconcat
[ andM [expr ghcWithInterpreter, notStage0] `cabalFlag` "internal-interpreter"
, notM cross `cabalFlag` "terminfo"
+ , arg "-build-tool-depends"
]
, builder (Haddock BuildPackage) ? arg ("--optghc=-I" ++ path) ]
@@ -202,6 +203,14 @@ packageArgs = do
, package runGhc ?
builder Ghc ? input "**/Main.hs" ?
(\version -> ["-cpp", "-DVERSION=" ++ show version]) <$> getSetting ProjectVersion
+
+ --------------------------------- genprimopcode ------------------------
+ , package genprimopcode
+ ? builder (Cabal Flags) ? arg "-build-tool-depends"
+
+ --------------------------------- hpcBin ----------------------------------
+ , package hpcBin
+ ? builder (Cabal Flags) ? arg "-build-tool-depends"
]
ghcBignumArgs :: Args