jgm / cheapskate

Experimental markdown processor in Haskell
BSD 3-Clause "New" or "Revised" License
107 stars 18 forks source link

remove invalid profiling options from cabal file #26

Closed msmorgan closed 6 years ago

msmorgan commented 6 years ago

-auto-exported, specified in cheapskate.cabal, is not a valid GHC flag.

Rather than changing it to -fprof-auto-exported, I have instead removed them. Cabal's documentation, linked below, recommends that packages do not choose their own profiling options, so that the person building the package can decide.

https://www.haskell.org/cabal/users-guide/developing-packages.html#pkg-field-ghc-prof-options

jgm commented 6 years ago

Odd, they used to work -- perhaps a change in Cabal?