We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cf22b35 + a9377c2 commit e301eb6Copy full SHA for e301eb6
Cabal/src/Distribution/Simple/GHC.hs
@@ -163,14 +163,14 @@ configure verbosity hcPath hcPkgPath conf0 = do
163
(userMaybeSpecifyPath "ghc" hcPath conf0)
164
let implInfo = ghcVersionImplInfo ghcVersion
165
166
- -- Cabal currently supports ghc >= 7.0.1 && < 9.12
+ -- Cabal currently supports ghc >= 7.0.1 && < 9.14
167
-- ... and the following odd development version
168
- unless (ghcVersion < mkVersion [9, 12]) $
+ unless (ghcVersion < mkVersion [9, 14]) $
169
warn verbosity $
170
"Unknown/unsupported 'ghc' version detected "
171
++ "(Cabal "
172
++ prettyShow cabalVersion
173
- ++ " supports 'ghc' version < 9.12): "
+ ++ " supports 'ghc' version < 9.14): "
174
++ programPath ghcProg
175
++ " is version "
176
++ prettyShow ghcVersion
0 commit comments