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

`-fhpc` doesn't work with bytecode interpreter
Currently if you want to use `-fhpc` you need to compile a native executable. This can be quite expensive since `-fhpc` inserts lots of instrumentation and affects how the optimiser runs. It could be more ergonomic to run program coverage tests using the interpreter, however `-fhpc` currently forces you into native code generation paths. Thankfully it isn't too difficult to extend the interpreter to support `-fhpc` so the user can choose which way they want to go, a prototype branch can be found https://gitlab.haskell.org/ghc/ghc/-/tree/wip/hpc-interpreter?ref_type=heads
issue