finding out ghc version from closed issue
Dear members, I am facing this problem with ghc-9.10.3: https://gitlab.haskell.org/ghc/ghc/-/issues/25477 It looks like the problem is already fixed at some later version. My question is... how do I find out the ghc version from the issue or from the git commit? Zoran
On Sat, Feb 28, 2026 at 12:02:13AM +0100, Zoran Bošnjak via Haskell-Cafe wrote:
Dear members, I am facing this problem with ghc-9.10.3: https://gitlab.haskell.org/ghc/ghc/-/issues/25477
It looks like the problem is already fixed at some later version. My question is... how do I find out the ghc version from the issue or from the git commit?
So far, the fix is only in 9.14. $ git grep -n '(errno != -*EINTR)' origin/ghc-9.14 -- rts/posix/ticker/TimerFd.c origin/ghc-9.14:rts/posix/ticker/TimerFd.c:118: if (errno != EINTR) { $ git grep -n '(errno != -*EINTR)' origin/ghc-9.12 -- rts/posix/ticker/TimerFd.c origin/ghc-9.12:rts/posix/ticker/TimerFd.c:118: if (errno != -EINTR) { -- Viktor. 🇺🇦 Слава Україні!
participants (2)
-
Viktor Dukhovni -
Zoran Bošnjak