[Git][ghc/ghc][ghc-9.12] haddock: Allow building with GHC 9.12
Zubin (@wz1000)
gitlab at gitlab.haskell.org
Wed Oct 2 12:43:40 UTC 2024
Zubin pushed to branch ghc-9.12 at Glasgow Haskell Compiler / GHC
Commits:
362afd63 by Zubin Duggal at 2024-10-02T18:12:52+05:30
haddock: Allow building with GHC 9.12
Also bump `binaryInterfaceVersion` to 45 to detect binary version changes.
- - - - -
1 changed file:
- utils/haddock/haddock-api/src/Haddock/InterfaceFile.hs
Changes:
=====================================
utils/haddock/haddock-api/src/Haddock/InterfaceFile.hs
=====================================
@@ -139,8 +139,8 @@ binaryInterfaceMagic = 0xD0Cface
-- (2) set `binaryInterfaceVersionCompatibility` to [binaryInterfaceVersion]
--
binaryInterfaceVersion :: Word16
-#if MIN_VERSION_ghc(9,9,0) && !MIN_VERSION_ghc(9,12,0)
-binaryInterfaceVersion = 44
+#if MIN_VERSION_ghc(9,12,0) && !MIN_VERSION_ghc(9,13,0)
+binaryInterfaceVersion = 45
binaryInterfaceVersionCompatibility :: [Word16]
binaryInterfaceVersionCompatibility = [binaryInterfaceVersion]
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/362afd632032ee8f174690c3ffe0015076b83ce6
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/362afd632032ee8f174690c3ffe0015076b83ce6
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20241002/d72a1a60/attachment.html>
More information about the ghc-commits
mailing list