From 9465e5e048876d21f2abb8807df4b7b5c116b23f Mon Sep 17 00:00:00 2001 From: Francesco Occhipinti Date: Tue, 24 Apr 2018 21:31:03 +0200 Subject: [PATCH] use the `-threaded` GHC flag when building benchmarks, related to #4130 (#4587) --- pandoc.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandoc.cabal b/pandoc.cabal index 5a5318c98..874dddbc7 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -599,7 +599,7 @@ benchmark weigh-pandoc hs-source-dirs: prelude other-modules: Prelude build-depends: base-compat >= 0.9 - ghc-options: -rtsopts -Wall -fno-warn-unused-do-bind + ghc-options: -rtsopts -Wall -fno-warn-unused-do-bind -threaded default-language: Haskell2010 other-extensions: NoImplicitPrelude @@ -702,6 +702,6 @@ benchmark benchmark-pandoc hs-source-dirs: prelude other-modules: Prelude build-depends: base-compat >= 0.9 - ghc-options: -rtsopts -Wall -fno-warn-unused-do-bind + ghc-options: -rtsopts -Wall -fno-warn-unused-do-bind -threaded default-language: Haskell2010 other-extensions: NoImplicitPrelude