diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-03-31 10:54:15 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-03-31 10:57:24 +0200 |
commit | 1f69f37f34c6f15fd900c2c1cce3ce896168dde9 (patch) | |
tree | fa0a54d0c9f877d41982645088b0e98292702555 /mk | |
parent | 5971ad56afbdadc9af1cf9e8d708783d2fddbd95 (diff) | |
download | haskell-1f69f37f34c6f15fd900c2c1cce3ce896168dde9.tar.gz |
Add `integer-gmp` specific hint to build.mk.sample
[skip ci]
Diffstat (limited to 'mk')
-rw-r--r-- | mk/build.mk.sample | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mk/build.mk.sample b/mk/build.mk.sample index c87d6f4eec..fd20e6977a 100644 --- a/mk/build.mk.sample +++ b/mk/build.mk.sample @@ -74,6 +74,10 @@ GhcLibWays = $(if $(filter $(DYNAMIC_GHC_PROGRAMS),YES),v dyn,v) # Only use -fasm by default on platforms that support it. GhcFAsm = $(if $(filter $(GhcWithNativeCodeGen),YES),-fasm,) +# Uncomment the following to force `integer-gmp` to use the in-tree GMP 5.0.4 +# (other sometimes useful configure-options: `--with-gmp-{includes,libraries}`) +#libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-intree-gmp + # ----------- A Performance/Distribution build -------------------------------- ifeq "$(BuildFlavour)" "perf" |