diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2019-05-09 11:01:17 +0300 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-05-14 16:41:19 -0400 |
commit | 684dc290563769d456b6f1c772673d64307ab072 (patch) | |
tree | 86b71305d259e3dfd2e05a4f50b7e37f10103f9b /mk/config.mk.in | |
parent | a5fdd185188fcda595fd712f90864ec7c20cdace (diff) | |
download | haskell-684dc290563769d456b6f1c772673d64307ab072.tar.gz |
Restore the --coerce option in 'happy' configuration
happy-1.19.10 has been released with a fix for --coerce in the presence
of higher rank types. This should result in about 10% performance
improvement in the parser.
Diffstat (limited to 'mk/config.mk.in')
-rw-r--r-- | mk/config.mk.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 6abf01816f..e2712796ce 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -858,8 +858,7 @@ HAPPY_VERSION = @HappyVersion@ # # Options to pass to Happy when we're going to compile the output with GHC # -# TODO (int-index): restore the -c option when happy/pull/134 is merged. -SRC_HAPPY_OPTS = -ag --strict +SRC_HAPPY_OPTS = -agc --strict # # Alex |