Re: finding out ghc version from closed issue

Viktor Dukhovni <[email protected]> Sat, 28 Feb 2026 12:53:50 +1100
Newsgroups gmane.comp.lang.haskell.cafe
Message-ID <[email protected]>
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.  🇺🇦 Слава Україні!
_______________________________________________
Haskell-Cafe mailing list -- [email protected]
To (un)subscribe, modify options or view archives go to:
Only members subscribed via the mailman list are allowed to post.