Reputation: 607
This answer to the problem I'm having suggests running e.g. sudo apt-get install ghc-prof
on Debian systems to install base libraries with profiling support. However I've installed Haskell Platform (through the 'Generic' option). How do I (re)install ghc/base with profiling support?
Upvotes: 1
Views: 259
Reputation: 38891
The Haskell Platform comes with profiling libraries for base. If you've installed the platform, and are using the platform-installed libraries, then you should "just" have it already. The only possibility is if you've still got your distro-installed GHC in your path, and are using that instead...
Upvotes: 1