andrepd
andrepd

Reputation: 607

How to install ghc and base with profiling support, in Haskell Platform

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

Answers (1)

sclv
sclv

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

Related Questions