use the -threaded GHC flag when building benchmarks, related to #4130 (#4587)

This commit is contained in:
Francesco Occhipinti 2018-04-24 21:31:03 +02:00 committed by John MacFarlane
parent 7c77c67037
commit 9465e5e048

View file

@ -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