diff options
author | Tom Smeding <tom@tomsmeding.com> | 2024-06-12 22:08:52 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2024-06-12 22:08:52 +0200 |
commit | 50fa6c2bb89162d2b6d5902c43c4857dbd2dca14 (patch) | |
tree | 174707f07fc1cae4dd0235ffacfaeb75c35d868e /ox-arrays.cabal | |
parent | a088130c3e722d3c589be388a98daab28a73b23f (diff) |
Vector stuff needs -O2; let's set it
Diffstat (limited to 'ox-arrays.cabal')
-rw-r--r-- | ox-arrays.cabal | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ox-arrays.cabal b/ox-arrays.cabal index 9153336..2de5a6d 100644 --- a/ox-arrays.cabal +++ b/ox-arrays.cabal @@ -56,7 +56,7 @@ library cc-options: -msse2 default-language: Haskell2010 - ghc-options: -Wall + ghc-options: -Wall -O2 other-extensions: TemplateHaskell test-suite test @@ -101,7 +101,8 @@ benchmark bench base, hmatrix, orthotope, - tasty-bench + tasty-bench, + vector hs-source-dirs: bench default-language: Haskell2010 - ghc-options: -Wall + ghc-options: -Wall -O2 |