[Git][ghc/ghc][wip/backports-9.8] compiler: Fix bootstrapping with 9.8.3

Ben Gamari (@bgamari) gitlab at gitlab.haskell.org
Mon Nov 25 19:20:27 UTC 2024



Ben Gamari pushed to branch wip/backports-9.8 at Glasgow Haskell Compiler / GHC


Commits:
a3d29cb1 by Ben Gamari at 2024-11-25T14:19:14-05:00
compiler: Fix bootstrapping with 9.8.3

Bump the CPP in genSym to ensure that we don't look for
`ghc_unique_counter64` in any compilers earlier than 9.8.4.

- - - - -


1 changed file:

- compiler/cbits/genSym.c


Changes:

=====================================
compiler/cbits/genSym.c
=====================================
@@ -9,7 +9,7 @@
 //
 // The CPP is thus about the RTS version GHC is linked against, and not the
 // version of the GHC being built.
-#if !MIN_VERSION_GLASGOW_HASKELL(9,7,0,0)
+#if !MIN_VERSION_GLASGOW_HASKELL(9,8,4,0)
 HsWord64 ghc_unique_counter64 = 0;
 #endif
 #if !MIN_VERSION_GLASGOW_HASKELL(9,3,0,0)



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/a3d29cb113f315d2c32e88f86a69316e6877489a

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/a3d29cb113f315d2c32e88f86a69316e6877489a
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/20241125/227d93f7/attachment.html>


More information about the ghc-commits mailing list