[Git][ghc/ghc][wip/jeltsch/base-buildable-with-ghc-9-14] 2 commits: Disable `GHC.Internal.Unicode.Version` import for GHC 9.14
Wolfgang Jeltsch pushed to branch wip/jeltsch/base-buildable-with-ghc-9-14 at Glasgow Haskell Compiler / GHC Commits: 967b23cb by Wolfgang Jeltsch at 2026-05-19T16:04:36+03:00 Disable `GHC.Internal.Unicode.Version` import for GHC 9.14 - - - - - 025d47d3 by Wolfgang Jeltsch at 2026-05-19T16:06:14+03:00 Disable GHC 9.14 `printToHandleFinalizerExceptionHandler` - - - - - 3 changed files: - libraries/base/src/GHC/Unicode.hs - libraries/base/src/GHC/Weak.hs - libraries/base/src/GHC/Weak/Finalize.hs Changes: ===================================== libraries/base/src/GHC/Unicode.hs ===================================== @@ -1,3 +1,4 @@ +{-# LANGUAGE CPP #-} {-# LANGUAGE Safe #-} {-# OPTIONS_HADDOCK not-home #-} @@ -44,4 +45,6 @@ module GHC.Unicode ) where import GHC.Internal.Unicode +#if __GLASGOW_HASKELL__ >= 1000 import GHC.Internal.Unicode.Version +#endif ===================================== libraries/base/src/GHC/Weak.hs ===================================== @@ -25,9 +25,8 @@ module GHC.Weak -- this handler will be ignored. setFinalizerExceptionHandler, getFinalizerExceptionHandler, - printToHandleFinalizerExceptionHandler + GHC.Weak.Finalize.printToHandleFinalizerExceptionHandler ) where import GHC.Internal.Weak -import GHC.Internal.Weak.Finalize import GHC.Weak.Finalize ===================================== libraries/base/src/GHC/Weak/Finalize.hs ===================================== @@ -7,7 +7,7 @@ module GHC.Weak.Finalize -- this handler will be ignored. setFinalizerExceptionHandler , getFinalizerExceptionHandler - , printToHandleFinalizerExceptionHandler + , GHC.Weak.Finalize.printToHandleFinalizerExceptionHandler -- * Internal , GHC.Weak.Finalize.runFinalizerBatch ) where View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/4b404918e10366d02345cd3d4d850a0... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/4b404918e10366d02345cd3d4d850a0... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)