... | ... | @@ -19,7 +19,12 @@ $ ./boot && ./configure |
|
|
$ hadrian/build -j
|
|
|
```
|
|
|
|
|
|
Depending on your system setup (typically on Mac), the above will fail due to missing GMP libraries. In that case you need to run `./configure --with-intree-gmp`.
|
|
|
Depending on your system setup (typically on macOS), the above will fail due to missing GMP libraries (e. g., `libraries/ghc-bignum/cbits/gmp_wrappers.c:30:3: error: __GNU_MP_VERSION not defined`). In that case run
|
|
|
|
|
|
```sh
|
|
|
$ ./boot && ./configure --with-intree-gmp
|
|
|
$ hadrian/build -j
|
|
|
```
|
|
|
|
|
|
On Windows:
|
|
|
|
... | ... | |