Bodigrim pushed to branch wip/mtl-2.3.2 at Glasgow Haskell Compiler / GHC
Commits:
-
f3c18890
by Samuel Thibault at 2026-01-10T15:48:22+01:00
-
7f15bd15
by Samuel Thibault at 2026-01-12T07:16:25-05:00
-
1db2f240
by Andrew Lelechenko at 2026-01-12T07:17:06-05:00
-
e038a383
by Sven Tennie at 2026-01-12T07:17:49-05:00
-
0e93a79b
by Andrew Lelechenko at 2026-01-12T19:39:07+00:00
5 changed files:
- .gitignore
- libraries/base/src/Data/Bifoldable1.hs
- libraries/ghc-internal/src/GHC/Internal/System/Environment/ExecutablePath.hsc
- libraries/ghc-platform/src/GHC/Platform/ArchOS.hs
- libraries/mtl
Changes:
| ... | ... | @@ -256,3 +256,12 @@ ghc.nix/ |
| 256 | 256 | # clangd
|
| 257 | 257 | .clangd
|
| 258 | 258 | dist-newstyle/
|
| 259 | + |
|
| 260 | +# -----------------------------------------------------------------------------
|
|
| 261 | +# CI
|
|
| 262 | + |
|
| 263 | +# Windows CI
|
|
| 264 | +toolchain/
|
|
| 265 | +ghc-*/
|
|
| 266 | +inplace/
|
|
| 267 | +tmp/ |
| ... | ... | @@ -2,6 +2,7 @@ |
| 2 | 2 | -- Copyright: Edward Kmett, Oleg Grenrus
|
| 3 | 3 | -- License: BSD-3-Clause
|
| 4 | 4 | --
|
| 5 | +-- @since 4.18.0.0
|
|
| 5 | 6 | |
| 6 | 7 | {-# LANGUAGE NoImplicitPrelude #-}
|
| 7 | 8 | {-# LANGUAGE Safe #-}
|
| ... | ... | @@ -51,7 +51,7 @@ import GHC.Internal.Foreign.Ptr |
| 51 | 51 | import GHC.Internal.Foreign.Storable
|
| 52 | 52 | import GHC.Internal.System.IO.Error (isDoesNotExistError)
|
| 53 | 53 | import GHC.Internal.System.Posix.Internals
|
| 54 | -#elif defined(linux_HOST_OS)
|
|
| 54 | +#elif defined(linux_HOST_OS) || defined(gnu_HOST_OS)
|
|
| 55 | 55 | import GHC.Internal.Data.Functor
|
| 56 | 56 | import GHC.Internal.Data.List (isSuffixOf)
|
| 57 | 57 | import GHC.Internal.Foreign.C.Types
|
| ... | ... | @@ -156,7 +156,7 @@ stringEncodeOS = \case |
| 156 | 156 | OSHaiku -> "haiku"
|
| 157 | 157 | OSQNXNTO -> "nto-qnx"
|
| 158 | 158 | OSAIX -> "aix"
|
| 159 | - OSHurd -> "hurd"
|
|
| 159 | + OSHurd -> "gnu"
|
|
| 160 | 160 | OSWasi -> "wasi"
|
| 161 | 161 | OSGhcjs -> "ghcjs"
|
| 162 | 162 |
| 1 | -Subproject commit 37cbd924cb71eba591a2e2b6b131767f632d22c9 |
|
| 1 | +Subproject commit 4b5080f43cbc372a437d5fecb144c7b75aadd86b |