aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2015-04-15 11:29:57 -0700
committerJohn MacFarlane <[email protected]>2015-04-15 11:29:57 -0700
commitef2f90ffd26a657d795e0e5128d8e2ee53515dd7 (patch)
tree8172b860093e3490b147de14ce768413eef39adf
parent540023daee91a2b52357a490f6edd52c5974a364 (diff)
Changed profiling options from -auto-all to -fprof-auto-exported.
This avoids a cabal check error condition.
-rw-r--r--pandoc.cabal4
1 files changed, 2 insertions, 2 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index 455102a30..5089a42c9 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -275,7 +275,7 @@ Library
if os(windows)
Cpp-options: -D_WINDOWS
Ghc-Options: -rtsopts -Wall -fno-warn-unused-do-bind
- Ghc-Prof-Options: -auto-all -caf-all -rtsopts
+ Ghc-Prof-Options: -fprof-auto-exported -rtsopts
Default-Language: Haskell98
Other-Extensions: PatternGuards, OverloadedStrings,
ScopedTypeVariables, GeneralizedNewtypeDeriving,
@@ -374,7 +374,7 @@ Executable pandoc
else
Build-Depends: network >= 2 && < 2.6
Ghc-Options: -rtsopts -with-rtsopts=-K16m -Wall -fno-warn-unused-do-bind
- Ghc-Prof-Options: -auto-all -caf-all -rtsopts -with-rtsopts=-K16m
+ Ghc-Prof-Options: -fprof-auto-exported -rtsopts -with-rtsopts=-K16m
if os(windows)
Cpp-options: -D_WINDOWS
Default-Language: Haskell98