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
|
--- a/xeno.cabal
+++ b/xeno.cabal
@@ -53,7 +53,7 @@ test-suite xeno-test
build-depends: base, xeno, hexml, hspec, bytestring
-- | DEBUG
, hspec
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded -rtsopts
if flag(whitespace-around-equals)
cpp-options: -DWHITESPACE_AROUND_EQUALS
default-language: Haskell2010
@@ -76,7 +76,7 @@ benchmark xeno-memory-bench
hs-source-dirs: bench
main-is: Memory.hs
build-depends: base, xeno, weigh, bytestring, deepseq, hexml
- ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts=-N
+ ghc-options: -Wall -threaded -O2 -rtsopts
default-language: Haskell2010
benchmark xeno-speed-big-files-bench
@@ -96,5 +96,5 @@ benchmark xeno-bench
main-is: Bench.hs
hs-source-dirs: app
build-depends: base, xeno, weigh, bytestring, deepseq, hexml, bytestring-mmap, time
- ghc-options: -O2 -threaded -rtsopts "-with-rtsopts=-N"
+ ghc-options: -O2 -threaded -rtsopts
default-language: Haskell2010
|