I'm developing a web app on Yesod framework, using wai-handler-devel to run the server.
A pacman -Syu (on Arch Linux) upgraded ghc from 7.0.2 to 7.0.3 and now the server throws an exception.
$ wai-handler-devel 3000 App.Controller withAppSimple
Attempting to interpret your app...
wai-handler-devel: /usr/lib/ghc-7.0.2/package.conf.d/package.cache:
openBinaryFile: does not exist (No such file or directory)
After a bit of digging I realized that the file existed in /usr/lib/ghc-7.0.3/package.conf.d/, so I renamed that folder to ghc-7.0.3 in the hopes that that would at least temporarily solve the problem (until our Haskell-guy comes back from holiday).
Any suggestion on where to even begin would be very helpful. Thanks!
ghc-7.0.2of course. =/ – Gorm Casper Jun 29 '11 at 8:59cabal install wai-handler-devel? If you don't know, just give it a try. – Thomas M. DuBuisson Jun 29 '11 at 13:40cabal install yesod. Whenever you upgrade GHC, you need to complete rebuild the package database. – Michael Snoyman Jun 29 '11 at 18:52