-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build with GHC 9.2 on i386 #486
Conversation
Shall we fix other |
Maybe. Changing all of them breaks the build with 9.2.1 though. I'll take another look soon. |
99feffd
to
9ef41c6
Compare
Actually it looks like the other conditionals are correct: The corresponding change to base has not been backported to the |
Co-authored-by: ˌbodʲɪˈɡrʲim <[email protected]>
I'm a bit at loss here. |
@Bodigrim In GHC HEAD, you can find these functions in In GHC 9.2.1, I can't find haddocks for them, but I think that's simply because the haddocks are generated on a 64-bit machine and therefore these functions aren't generated at all: Ultimately I don't know whether this will compile with 9.2 on i386. We'll find out once this is run on GHC's CI infrastructure. Shall we merge and make an MR for GHC to check? |
Merged, thanks. Could you please make a GHC MR to check? |
* Fix build with GHC 9.2 on i386 Fixes #484. * Update Data/ByteString/Builder/RealFloat/Internal.hs Co-authored-by: ˌbodʲɪˈɡrʲim <[email protected]> Co-authored-by: ˌbodʲɪˈɡrʲim <[email protected]> (cherry picked from commit cb629e0)
Done: https://gitlab.haskell.org/ghc/ghc/-/merge_requests/7592. |
Fixes #484.