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