Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

Fix `-no_compact_unwind` check
*N.B. During development in !9263 we came across multiple tasks and bugs regarding the configuration script. In preparation of merging it, we're opening tickets for the leftover tasks both regarding the new `ghc-toolchain` and the toolchain logic in configure. This is one of those tickets.* While writing `ghc-toolchain` we noticed that the `FP_PROG_LD_NO_COMPACT_UNWIND` check is subtly wrong. Specifically, we pass `-Wl,-no_compact_unwind` to `cc`. However, `ld.gold` interprets this as `-n o_compact_unwind`, which is a valid argument. We should just make this check specific to Darwin (and mirror this change in `GHC.Toolchain.Tools.Link.checkSupportsCompactUnwind`).
issue