@@ -475,9 +475,9 @@ warnUnsupportedCompiler ghcVersion = do
475
475
logWarn " For more information, see: https://github.com/commercialhaskell/stack/issues/648"
476
476
logWarn " "
477
477
pure True
478
- | ghcVersion >= mkVersion [9 , 3 ] -> do
478
+ | ghcVersion >= mkVersion [9 , 5 ] -> do
479
479
logWarn $
480
- " Stack has not been tested with GHC versions above 9.2 , and using " <>
480
+ " Stack has not been tested with GHC versions above 9.4 , and using " <>
481
481
fromString (versionString ghcVersion) <>
482
482
" , this may fail"
483
483
pure True
@@ -502,9 +502,9 @@ warnUnsupportedCompilerCabal cp didWarn = do
502
502
logWarn " This invocation will most likely fail."
503
503
logWarn " To fix this, either use an older version of Stack or a newer resolver"
504
504
logWarn " Acceptable resolvers: lts-3.0/nightly-2015-05-05 or later"
505
- | cabalVersion >= mkVersion [3 , 7 ] ->
505
+ | cabalVersion >= mkVersion [3 , 9 ] ->
506
506
logWarn $
507
- " Stack has not been tested with Cabal versions above 3.6 , but version " <>
507
+ " Stack has not been tested with Cabal versions above 3.8 , but version " <>
508
508
fromString (versionString cabalVersion) <>
509
509
" was found, this may fail"
510
510
| otherwise -> pure ()
@@ -1471,7 +1471,7 @@ installGHCPosix downloadInfo _ archiveFile archiveType tempDir destDir = do
1471
1471
-- Data.Map.union provides a left-biased union, so mGccEnv will prevail
1472
1472
let ghcConfigureEnv =
1473
1473
fromMaybe Map. empty mGccEnv `Map.union` gdiConfigureEnv downloadInfo
1474
-
1474
+
1475
1475
logSticky " Configuring GHC ..."
1476
1476
runStep " configuring" dir
1477
1477
ghcConfigureEnv
0 commit comments