Cabal -finfo-table-map not working? GHC 9.10.3
Haskell Community [Unofficial]
April 30, 2026
What you are seeing is the consequence of your boot libraries not being compiled with IPE. Can you try something like and re-profile your app with the -ipe compiler?:
$ ghcup --verbose compile ghc -j16 -b 9.10.3 -v 9.10.3 -f release+ipe -o '%v-ipe'
(-b is your local compiler, -v is the compiler you want at the end)
Discussion in the ATmosphere