diff options
author | Ben Gamari <ben@well-typed.com> | 2020-11-13 10:16:36 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-11-15 03:37:31 -0500 |
commit | fc644b1a643128041cfec25db84e417851e28bab (patch) | |
tree | 9ac5f9beb8ed81471bcdee723f533071e48816e5 /ghc | |
parent | 8887102fc4ed8ed1089c1aafd19bab424ad706f3 (diff) | |
download | haskell-fc644b1a643128041cfec25db84e417851e28bab.tar.gz |
ghc-bin: Build with eventlogging by default
We now have all sorts of great facilities using the
eventlog which were previously unavailable without
building a custom GHC. Fix this by linking with
`-eventlog` by default.
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/ghc-bin.cabal.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in index f15ad5e1e3..5884984474 100644 --- a/ghc/ghc-bin.cabal.in +++ b/ghc/ghc-bin.cabal.in @@ -91,6 +91,8 @@ Executable ghc if flag(threaded) ghc-options: -threaded + ghc-options: -eventlog + Other-Extensions: CPP NondecreasingIndentation |