You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that ghc-8.0.1 was released "21 May 2016" from GHC status along with base-4.9.0.0. Can we bump the CPP guards forward to this point in time?
#if MIN_VERSION_base(4,9,0)
This would allow us to do things like switch from -fwarn-* and -fno-warn-* to -W* and -Wno-*.
In GHC < 8 the syntax for -W⟨wflag⟩ was -fwarn-⟨wflag⟩
(e.g. -fwarn-incomplete-patterns).
This spelling is deprecated, but still accepted for backwards compatibility.
Likewise, -Wno-⟨wflag⟩ used to be fno-warn-⟨wflag⟩
(e.g. -fno-warn-incomplete-patterns).
GHC 8.0 is out of our support window. So, in principle, yes. But, as recently noticed by our users, we are not explicit enough about dropping support for certain GHCs. Even if this is implied by our GHC support policy, it should be announced (in the release announcement, perhaps).
This would allow us to do things like switch from
-fwarn-*
and-fno-warn-*
to-W*
and-Wno-*
.Originally posted by @philderbeast in #8998 (comment)
The text was updated successfully, but these errors were encountered: