summaryrefslogtreecommitdiff
path: root/hadrian/doc/make.md
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-02-11 09:38:18 +0100
committerBen Gamari <ben@smart-cactus.org>2020-06-17 16:22:04 -0400
commitdceecb093c3ee1e4dc970bb6669ff855ec37f6ac (patch)
tree74158d954b52c6c5cf0fbc294d79873a066e79cb /hadrian/doc/make.md
parentf817d816e60a487bca64037095c01e9956225b64 (diff)
downloadhaskell-dceecb093c3ee1e4dc970bb6669ff855ec37f6ac.tar.gz
Update Hadrian
* support ghc-bignum backend selection in flavours and command-line * support ghc-bignum "--check" flag (compare results of selected backend against results of the native one) in flavours and command-line (e.g. pass --bignum=check-gmp" to check the "gmp" backend) * remove the hack to workaround #15286 * build GMP only when the gmp backend is used * remove hacks to workaround `text` package flags about integer-*. We fix `text` to use ghc-bignum unconditionally in another patch
Diffstat (limited to 'hadrian/doc/make.md')
-rw-r--r--hadrian/doc/make.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/hadrian/doc/make.md b/hadrian/doc/make.md
index b0e19e4721..318b736fa5 100644
--- a/hadrian/doc/make.md
+++ b/hadrian/doc/make.md
@@ -94,17 +94,6 @@ time you fire up a build. This is not possible with the Make build system.
```
See [flavours documentation](https://gitlab.haskell.org/ghc/ghc/blob/master/hadrian/doc/flavours.md) for info on flavours.
-- Building with `integer-simple` as the integer library
-
- ``` sh
- # Make
- echo "INTEGER_LIBRARY=integer-simple" >> mk/build.mk
- make
-
- # Hadrian
- build --integer-simple
- ```
-
- Freezing the stage 1 GHC compiler
``` sh