[Git][ghc/ghc][master] hadrian: Enforce the usage of GHC >=9.8.1 for ghci-multi
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Thu Nov 7 09:36:37 UTC 2024
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
0c722e14 by Hécate Kleidukos at 2024-11-07T04:35:37-05:00
hadrian: Enforce the usage of GHC >=9.8.1 for ghci-multi
GHC 9.6 no good when it comes to multi-repl stuff, despite being well
within the range of n-2 releases for bootstrapping, when the script was
adapted to load haddock, in !12851
- - - - -
1 changed file:
- hadrian/ghci-multi-cabal.in
Changes:
=====================================
hadrian/ghci-multi-cabal.in
=====================================
@@ -1,7 +1,7 @@
#!/usr/bin/env sh
RUN_GHC=@WithGhc@
-if [[ $(printf "9.4.0\n%s\n" $($RUN_GHC --numeric-version) | sort -uV | head -n 1) != "9.4.0" ]]; then echo "Multi-repl needs at least GHC-9.4.1"; exit 1; fi
+if [[ $(printf "9.8.1\n%s\n" $($RUN_GHC --numeric-version) | sort -uV | head -n 1) != "9.8.1" ]]; then echo "Multi-repl needs at least GHC-9.8.1"; exit 1; fi
# This file is generated by configure from ghci-multi.in
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0c722e143be81e2178d30621e46553462486b828
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0c722e143be81e2178d30621e46553462486b828
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/20241107/d0f2febd/attachment-0001.html>
More information about the ghc-commits
mailing list