Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "ignoring (possibly broken) abi-depends field for packages" mean?

Tags:

haskell

ghc

cabal

I've got this warning

ignoring (possibly broken) abi-depends field for packages

when run cabal build with my small project. What does it mean? And when I use usual ghc -O2 mylib.lhs I've got no such warning, why?

Haskell Platform with ghc 8.4.3 on Windows 7 64-bit

like image 539
Vladimir Avatar asked Dec 11 '18 07:12

Vladimir


1 Answers

According to this issue https://github.com/haskell/cabal/issues/5465 message appears "whenever a package registration (IPI) includes a abi-depends: field", thought to be redundant and removed in future releases.

like image 179
nebm51 Avatar answered Oct 01 '22 11:10

nebm51