summaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-07-02 16:29:11 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-07-02 16:29:11 -0700
commita5db4246656afae3541936269e727d9a9cc39795 (patch)
tree79d6a1fc0e992fd6b2b9854f1c88090296ab6acb /pandoc.cabal
parent9e458d7974a099de59a53f8d4e6435b0f76ba774 (diff)
Removed -threaded from cabal ghc-options.
Use of the threaded runtime imposes a slight performance penalty, and there is really no need for it, since pandoc doesn't run faster on multiple cores.
Diffstat (limited to 'pandoc.cabal')
-rw-r--r--pandoc.cabal12
1 files changed, 6 insertions, 6 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index b4c74125f..139e576ec 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -344,12 +344,12 @@ Executable pandoc
else
Build-depends: base >= 3 && < 4
if impl(ghc >= 7.0.1)
- Ghc-Options: -O2 -rtsopts -threaded -Wall -fno-warn-unused-do-bind -dno-debug-output
+ Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output
else
if impl(ghc >= 6.12)
- Ghc-Options: -O2 -Wall -threaded -fno-warn-unused-do-bind -dno-debug-output
+ Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
else
- Ghc-Options: -O2 -Wall -threaded
+ Ghc-Options: -O2 -Wall
if impl(ghc >= 7.0.1)
Ghc-Prof-Options: -auto-all -caf-all -rtsopts
else
@@ -411,12 +411,12 @@ Executable test-pandoc
else
Build-depends: base >= 3 && < 4
if impl(ghc >= 7.0.1)
- Ghc-Options: -O2 -rtsopts -threaded -Wall -fno-warn-unused-do-bind -dno-debug-output
+ Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output
else
if impl(ghc >= 6.12)
- Ghc-Options: -O2 -Wall -threaded -fno-warn-unused-do-bind -dno-debug-output
+ Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
else
- Ghc-Options: -O2 -Wall -threaded
+ Ghc-Options: -O2 -Wall
if impl(ghc >= 7.0.1)
Ghc-Prof-Options: -auto-all -caf-all -rtsopts
else