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