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

vmem limit causes GHC startup failure
## Summary When setting a virtual memory limit of <1.3GB, GHC wont start with the error: > ghc: failed to create OS thread: Cannot allocate memory This has led to broken Haskell support in Compiler Explorer ("godbolt"): https://github.com/compiler-explorer/compiler-explorer/issues/1412 This is probably due to #9706 "New block-structured heap organization for 64-bit" Other related issues: \ #14193 "Add RTS flag to disable 1TB address space allocation" \ #8604 "Some stack/vmem limits (ulimit) combinations causing GHC to fail" \ ## Steps to reproduce In a new terminal: `ulimit -v 1258292` Then try to run `ghc`. In a different, new, terminal, try 1.3GB: `ulimit -v 1363148` Then run `ghc` which should work. Or see failure in Compiler Explorer: https://gcc.godbolt.org/z/zKs4a6 ## Environment * GHC version used: 8.6.5, (8.8.3 through stack), Compiler Explorer uses 8.6.1 and 8.6.2 Optional: * Operating System: Ubuntu 20.04, Kernel 5.8.0-050800-generic * System Architecture: AMD64 (AMD Ryzen 7 4700U)
issue