1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
--- a/pretty-simple.cabal
+++ b/pretty-simple.cabal
@@ -57,7 +57,7 @@
, text
, optparse-applicative
default-language: Haskell2010
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded -rtsopts
if flag(buildexe)
buildable: True
@@ -72,7 +72,7 @@
build-depends: base
, pretty-simple
default-language: Haskell2010
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded -rtsopts
if flag(buildexample)
buildable: True
@@ -89,7 +89,7 @@
, pretty-simple
, text
default-language: Haskell2010
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded -rtsopts
if flag(buildexample)
buildable: True
@@ -106,7 +106,7 @@
, QuickCheck
, template-haskell
default-language: Haskell2010
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded -rtsopts
benchmark pretty-simple-bench
type: exitcode-stdio-1.0
@@ -119,7 +119,7 @@
, pretty-simple
, text
default-language: Haskell2010
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded -rtsopts
source-repository head
type: git
|