38 lines
1.7 KiB
Diff
38 lines
1.7 KiB
Diff
--- stack-2.9.3.1/src/Stack/Setup.hs~ 2023-06-22 18:40:54.000000000 +0800
|
|
+++ stack-2.9.3.1/src/Stack/Setup.hs 2023-08-08 14:29:43.486062926 +0800
|
|
@@ -719,12 +719,12 @@
|
|
logWarn "For more information, see: https://github.com/commercialhaskell/stack/issues/648"
|
|
logWarn ""
|
|
pure True
|
|
- | ghcVersion >= mkVersion [9, 5] -> do
|
|
- logWarn $
|
|
- "Stack has not been tested with GHC versions above 9.4, and using " <>
|
|
- fromString (versionString ghcVersion) <>
|
|
- ", this may fail"
|
|
- pure True
|
|
+ -- | ghcVersion >= mkVersion [9, 5] -> do
|
|
+ -- logWarn $
|
|
+ -- "Stack has not been tested with GHC versions above 9.4, and using " <>
|
|
+ -- fromString (versionString ghcVersion) <>
|
|
+ -- ", this may fail"
|
|
+ -- pure True
|
|
| otherwise -> do
|
|
logDebug "Asking for a supported GHC version"
|
|
pure False
|
|
@@ -746,11 +746,11 @@
|
|
logWarn "This invocation will most likely fail."
|
|
logWarn "To fix this, either use an older version of Stack or a newer resolver"
|
|
logWarn "Acceptable resolvers: lts-3.0/nightly-2015-05-05 or later"
|
|
- | cabalVersion >= mkVersion [3, 9] ->
|
|
- logWarn $
|
|
- "Stack has not been tested with Cabal versions above 3.8, but version " <>
|
|
- fromString (versionString cabalVersion) <>
|
|
- " was found, this may fail"
|
|
+ -- | cabalVersion >= mkVersion [3, 9] ->
|
|
+ -- logWarn $
|
|
+ -- "Stack has not been tested with Cabal versions above 3.8, but version " <>
|
|
+ -- fromString (versionString cabalVersion) <>
|
|
+ -- " was found, this may fail"
|
|
| otherwise -> pure ()
|
|
|
|
-- | Ensure that the msys toolchain is installed if necessary and
|