Skip to content

Commit ee32274

Browse files
authored
Merge pull request #9932 from haskell/mergify/bp/3.12/pr-9928
Support GHC 9.12 (backport #9928)
2 parents 71f6949 + 464e7a7 commit ee32274

File tree

1 file changed

+3
-3
lines changed
  • Cabal/src/Distribution/Simple

1 file changed

+3
-3
lines changed

Cabal/src/Distribution/Simple/GHC.hs

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,14 @@ configure verbosity hcPath hcPkgPath conf0 = do
161161
(userMaybeSpecifyPath "ghc" hcPath conf0)
162162
let implInfo = ghcVersionImplInfo ghcVersion
163163

164-
-- Cabal currently supports ghc >= 7.0.1 && < 9.10
164+
-- Cabal currently supports ghc >= 7.0.1 && < 9.12
165165
-- ... and the following odd development version
166-
unless (ghcVersion < mkVersion [9, 10]) $
166+
unless (ghcVersion < mkVersion [9, 12]) $
167167
warn verbosity $
168168
"Unknown/unsupported 'ghc' version detected "
169169
++ "(Cabal "
170170
++ prettyShow cabalVersion
171-
++ " supports 'ghc' version < 9.10): "
171+
++ " supports 'ghc' version < 9.12): "
172172
++ programPath ghcProg
173173
++ " is version "
174174
++ prettyShow ghcVersion

0 commit comments

Comments
 (0)