Wolfgang Jeltsch pushed to branch wip/jeltsch/base-buildable-with-ghc-9-14 at Glasgow Haskell Compiler / GHC Commits: 44d20fd8 by Wolfgang Jeltsch at 2026-05-19T14:36:09+03:00 Add alternative `fixIO` import for GHC 9.14 - - - - - 1 changed file: - libraries/base/src/System/IO.hs Changes: ===================================== libraries/base/src/System/IO.hs ===================================== @@ -279,7 +279,11 @@ import GHC.IO.StdHandles stdout, stderr ) +#if __GLASGOW_HASKELL__ < 1000 +import GHC.Internal.System.IO (fixIO) +#else import GHC.Internal.Control.Monad.Fix (fixIO) +#endif import Control.Monad (return, (>>=)) import Control.Exception (ioError) import Data.Eq ((==)) View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/44d20fd8ea4802511edd508d54d94b46... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/44d20fd8ea4802511edd508d54d94b46... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)