I've been working on stabilizing AArch64 (ghc/ghc#16796 (closed)) in hopes that ghc%8.8.1 can finally ship with defensible support. Do you have any sense for which distributions would be most useful to produce bindists for? Currently we build for Debian 9.
Otherwise it's hard to know for tools like ghcup whether the user can install version x.y.z on his distro on his current arch. We would need a much more complicated .available-versions format.
This also made it hard to bump the "recommended" version for GHC, because 8.6.5 does not have a FreeBSD bindist, but older versions have.
While this is a great goal, I'm afraid it is really more than we can commit to supporting until we have more hands to help with CI (and perhaps more hardware, for that matter; pushing out a release already takes on the order of days).
For instance, a reasonably dense configuration matrix would be,
Fedora 29
Fedora 30
Debian stable
Debian testing
Ubuntu 16.04
Ubuntu 18.04
Ubuntu 19.04
CentOS 7
FreeBSD 11
FreeBSD 12?
Alpine?
[cartesian product]
i386
x86_64
ARMv7
AArch64
[cartesian product]
Standard
DWARF-enabled
integer-simple
That is over 100 binary distributions. However, there is a tremendous amount of overlap from the perspective of ABI compatibility (as computed by this little hack):
So, what were 12 configurations turn into eight. Moreover, glibc maintains backwards compatibility: the Bionic bindist could likely be used on Fedora 28, Debian testing, Fedora 29, Cosmic, Fedora 30 and Disco. Now you are down to six bindists. So, without even trying we cut the size of our configuration space in half; this seems well worth exploiting, even if it does cost a bit of complexity.
This also made it hard to bump the "recommended" version for GHC, because 8.6.5 does not have a FreeBSD bindist, but older versions have.
Yes, I am working on bringing up FreeBSD support under the new CI scheme.