summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-08-06 14:46:29 -0400
committerBen Gamari <ben@smart-cactus.org>2022-08-06 16:32:09 -0400
commitf08a73a0b2387769e3c2ce1045e2f36ceef083a6 (patch)
tree12c68a21cf635f3d4b27ee1b78323c6667778348
parent69db740638f49b84b0a4b80bc1eb6a0813ca71bc (diff)
downloadhaskell-f08a73a0b2387769e3c2ce1045e2f36ceef083a6.tar.gz
make: Fix too-old bootstrap compiler error
-rw-r--r--ghc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc.mk b/ghc.mk
index 1260fab507..20d4764f91 100644
--- a/ghc.mk
+++ b/ghc.mk
@@ -136,7 +136,7 @@ ifeq "$(ProjectVersion)" ""
$(error Please run ./configure first)
endif
ifneq "$(CanBootWithMake)" "YES"
-$(error The make build system requires a boot compiler older than ghc-9.2. Your boot compiler is too new and cannot be used to build ghc-9.4 with make. Either boot with ghc 9.0.2)
+$(error The make build system requires a boot compiler older than ghc-9.2. Your boot compiler is too new and cannot be used to build ghc-9.4 with make. Either boot with ghc 9.0.2 or build with hadrian. See https://www.haskell.org/ghc/blog/20220805-make-to-hadrian.html for advice on transitioning to hadrian.)
endif
endif