diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-31 21:33:46 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-12-31 22:41:26 +0100 |
commit | 37945c1db2f893657c1e3b9b26704cbf3ef27a5a (patch) | |
tree | 89da570bc1c8340f3487b96e9eff28ef7c8f072d /configure.ac | |
parent | 12ee51137a8c848f64b44fd8f3f4cd899bb214bc (diff) | |
download | haskell-37945c1db2f893657c1e3b9b26704cbf3ef27a5a.tar.gz |
Simplify -fcmm-sink handling for Parser.hs
As we're requiring GHC >= 7.10 now, the conditional handling introduced
in 9e133b9dccec0553c6ec302d6ca0d3bc5eea06c4 for addressing #8182 can be
made unconditional, and thus simplify the build-system a little bit.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index ae8a3e9b24..042b417ff1 100644 --- a/configure.ac +++ b/configure.ac @@ -153,12 +153,6 @@ fi GHC_PACKAGE_DB_FLAG=package-db AC_SUBST(GHC_PACKAGE_DB_FLAG) -# GHC 7.7+ needs -fcmm-sink when compiling Parser.hs. See #8182 -FP_COMPARE_VERSIONS([$GhcVersion],[-gt],[7.7], - CMM_SINK_BOOTSTRAP_IS_NEEDED=YES, - CMM_SINK_BOOTSTRAP_IS_NEEDED=NO) -AC_SUBST(CMM_SINK_BOOTSTRAP_IS_NEEDED) - # GHC is passed to Cabal, so we need a native path if test "${WithGhc}" != "" then |