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

protocol-buffers-descriptor is super slow and memory-intensive to build with 8.10.2
## Summary With GHC-8.10.2 protocol-buffers-descriptor won't build without disabling optimizations * building without fiddling results in OOM (I have 8gb RAM) at building Text.DescriptorProtos.FileOptions * switching to -O1 and removing fspec-constr-count doesn't seem to help * adding -O0 to just the FileOptions module gets me past that, by now it's stuck on Text.DescriptorProtos.FieldDescriptorProto (though memory is around 4GB) With O0 on the whole project it builds quickly. For a complete build log see https://travis-ci.org/github/k-bx/protocol-buffers/jobs/741074158 Original ticket: https://github.com/k-bx/protocol-buffers/issues/91 ## Steps to reproduce ``` # git clone git@github.com:k-bx/protocol-buffers.git # cd protocol-buffers # git checkout 3b8ab6b8e10bb0bfe8411db785c1c19a5e4dcd70 # stack build --stack-yaml stack-8.10.2.yaml protocol-buffers-descriptor ``` ## Expected behavior protocol-buffers-descriptor builds. ## Environment * GHC version used: 8.10.2
issue