[#211] Avoid warning on case-insensitive systems

Problem: There is currently some problem in stack or cabal
that produces a warning when building this project on
case-insensitive systems.

Solution: The current workaroud for it is to add the GHC
option '-optP-Wno-nonportable-include-path'.
This commit is contained in:
Adrián Enríquez 2022-12-13 10:21:35 +01:00
parent 7457a6b109
commit dd52970029
No known key found for this signature in database
GPG Key ID: 1D2A049F5866F977

View File

@ -66,6 +66,11 @@ ghc-options:
- -Wno-prepositive-qualified-module
- -Wno-monomorphism-restriction
# This option avoids a warning on case-insensitive systems:
# https://github.com/haskell/cabal/issues/4739
# https://github.com/commercialhaskell/stack/issues/3918
- -optP-Wno-nonportable-include-path
dependencies:
- base >=4.14.3.0 && <5