Skip to content

Commit e301eb6

Browse files
authored
Merge pull request #10656 from cabalism/bump/ghc-9.12
Support `ghc-9.12.*`
2 parents cf22b35 + a9377c2 commit e301eb6

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
@@ -163,14 +163,14 @@ configure verbosity hcPath hcPkgPath conf0 = do
163163
(userMaybeSpecifyPath "ghc" hcPath conf0)
164164
let implInfo = ghcVersionImplInfo ghcVersion
165165

166-
-- Cabal currently supports ghc >= 7.0.1 && < 9.12
166+
-- Cabal currently supports ghc >= 7.0.1 && < 9.14
167167
-- ... and the following odd development version
168-
unless (ghcVersion < mkVersion [9, 12]) $
168+
unless (ghcVersion < mkVersion [9, 14]) $
169169
warn verbosity $
170170
"Unknown/unsupported 'ghc' version detected "
171171
++ "(Cabal "
172172
++ prettyShow cabalVersion
173-
++ " supports 'ghc' version < 9.12): "
173+
++ " supports 'ghc' version < 9.14): "
174174
++ programPath ghcProg
175175
++ " is version "
176176
++ prettyShow ghcVersion

0 commit comments

Comments
 (0)