Skip to content

Commit 4e3d82b

Browse files
committed
Silence GHC 8.8 related noise for now
And we'll cross that StarIsType bridge when we get there...
1 parent 686419b commit 4e3d82b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cassava.cabal

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,11 @@ Library
123123

124124
-- https://ghc.haskell.org/trac/ghc/wiki/Migration/8.0#Recommendationsforforward-compatibility
125125
if impl(ghc >= 8.0)
126-
ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances
126+
ghc-options: -Wcompat -Wnoncanonical-monad-instances
127+
if impl(ghc >= 8.8)
128+
ghc-options: -Wno-star-is-type
129+
else
130+
ghc-options: -Wnoncanonical-monadfail-instances
127131
else
128132
-- provide/emulate `Control.Monad.Fail` and `Data.Semigroups` API for pre-GHC8
129133
build-depends: fail == 4.9.*, semigroups >= 0.18.2 && <0.20

0 commit comments

Comments
 (0)