Reduce GHCs optimisation level

This commit is contained in:
Utku Demir 2022-11-19 15:43:52 +13:00
parent e43184a3b5
commit 9abb1b7df8
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Unreleased
* feat: Improved help text.
* fix: Use -O1 instead of -O2 to save on compile times.
## 0.2.1 - 2022-10-24:

View File

@ -65,7 +65,7 @@ common common-options
executable nix-tree
import: common-options
ghc-options: -Wunused-packages -O2 -threaded -with-rtsopts=-N
ghc-options: -Wunused-packages -O1 -threaded -with-rtsopts=-N
main-is: NixTree/Main.hs
hs-source-dirs: src
default-language: Haskell2010