From 8bde0dde4380c43f9262393908dc29de8f8f2e91 Mon Sep 17 00:00:00 2001 From: brandon s allbery kf8nh Date: Tue, 24 Jun 2025 19:29:52 -0400 Subject: [PATCH] update max supported ghc to <9.16 --- Cabal/src/Distribution/Simple/GHC.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cabal/src/Distribution/Simple/GHC.hs b/Cabal/src/Distribution/Simple/GHC.hs index 6548c166d4f..593bf4e9119 100644 --- a/Cabal/src/Distribution/Simple/GHC.hs +++ b/Cabal/src/Distribution/Simple/GHC.hs @@ -186,7 +186,7 @@ configureCompiler verbosity hcPath conf0 = do (userMaybeSpecifyPath "ghc" hcPath conf0) -- Cabal currently supports GHC less than `maxGhcVersion` - let maxGhcVersion = mkVersion [9, 14] + let maxGhcVersion = mkVersion [9, 16] unless (ghcVersion < maxGhcVersion) $ warn verbosity $ "Unknown/unsupported 'ghc' version detected "