diff options
author | Austin Seipp <austin@well-typed.com> | 2014-01-07 01:42:29 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-01-07 01:43:56 -0600 |
commit | d783f12dae2581d2feccf53a43fbf2d1a6fb6d05 (patch) | |
tree | 2fb6a9e1f5133c3426fc0bdcf09adedc628c3d76 | |
parent | 1310d75a14c8efb8ab92ee65bb57b522ad32894f (diff) | |
download | haskell-d783f12dae2581d2feccf53a43fbf2d1a6fb6d05.tar.gz |
Lower unfolding threshold for windows (again.)
We creeped back up again past the symbol threshold on my test x86_64
win2k8 test machine. This brings it down to 60600 symbols in split
windows DLL.
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r-- | mk/config.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 780b3030f9..f61ecc0cb5 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -105,7 +105,7 @@ endif # # See #5987 ifeq "$(TargetOS_CPP)" "mingw32" -GhcStage2HcOpts += -funfolding-creation-threshold=300 +GhcStage2HcOpts += -funfolding-creation-threshold=100 endif # Some platforms don't support shared libraries |