I want to compile my program with profiling, so I run:

$ cabal configure --enable-executable-profiling
...
$ cabal build
...
    Could not find module 'Graphics.UI.GLUT':
      Perhaps you havent installed the profiling libraries for package 'GLUT-2.2.2.0'?
...
$ # indeed I have not installed the prof libs for GLUT, so..
$ cabal install -p GLUT --reinstall
...
    Could not find module 'Graphics.Rendering.OpenGL':
      Perhaps you havent installed the profiling libraries for package 'OpenGL-2.4.0.1'?
...

So, the problem is, that unlike cabal's usual welcome behavior, cabal doesn't resolve the dependencies and install them when needing profiling libraries.

I can work around it by resolving the dependencies manually (by following errors that appear after a while of compiling):

$ cabal install -p OpenGLRaw --reinstall
$ cabal install -p StateVar --reinstall
$ cabal install -p Tensor --reinstall
$ cabal install -p ObjectName --reinstall
$ cabal install -p GLURaw --reinstall
$ cabal install -p OpenGL --reinstall
$ cabal install -p GLUT --reinstall

And then repeat for my next dependency..

Is there a better way to do this? i.e do make cabal do the work on its own as it does for normal libraries?

link|improve this question

4  
I've enabled library-profiling: True in my ~/.cabal/config file. From then on, any new installations will automatically enable profiling. Unfortunately that still means I had to manually reinstall for the old packages already installed. Although, after a while of doing this manually, I now have most packages reinstalled with profiling enabled... – Tom Lokhorst Nov 9 '09 at 23:48
@Tom Lokhorst: Thanks. Also, this seems to be the best/only answer. So if you want, you can put it down as an answer so I can accept it – yairchu Nov 10 '09 at 15:06
Well, it's impolite to say no to free upvotes :-) However, I do hope someone will come along with a better answer, one that would not require me to reinstall the complete Haskell Platform manually next time. – Tom Lokhorst Nov 10 '09 at 17:43
feedback

4 Answers

up vote 12 down vote accepted

I've enabled library-profiling: True in my ~/.cabal/config file. From then on, any new installations will automatically enable profiling.

Unfortunately that still means I had to manually reinstall for the old packages already installed. Although, after a while of doing this manually, I now have most packages reinstalled with profiling enabled...

link|improve this answer
feedback

From a comment by Tom Lokhorst:

I do hope someone will come along with a better answer, one that would not require me to reinstall the complete Haskell Platform manually next time.

For future visitors:

The task of installing profiling versions of all installed libraries has become less of a chore, cabal (cabal-install) now keeps track of what was installed using it in the world file in the .cabal directory (on linux, that would be $HOME/.cabal, on Windows something like C:\Users\%YOU%\AppData\Roaming\cabal\, on OSX ??).

So after enabling profiling in the config file (in the same directory), installing everything with profiling support should work as follows:

$ cabal install --reinstall world --dry-run

First run with --dry-run to check for problems before actually reinstalling anything. If it would reinstall boot packages like process or directory, that's a bad sign, if you don't know how to handle it, ask on the #haskell IRC channel, one of the mailing lists or here for guidance. If it fails to find a consistent install plan due to new versions on hackage of some packages which are incompatible with each other, that can usually be solved by editing the world file and constraining allowable versions of some packages.

Then, if you are optimistic that nothing will badly break,

$ cabal install --reinstall world

and have a nice pot of tea while GHC is busy compiling.

link|improve this answer
feedback

Daniel Fischer's answer looks good, but for some reason my ~/.cabal/world library only contained entries for libraries directly installed, and not their dependencies.

Instead, I dumped out a list of all installed libraries using

$ ghc-pkg list > list

This lists the libraries installed system-wide and locally. Therefore, I edited the list file to remove the first portion (containing libraries installed system-wide) leaving only the lines after /home/<user>/.ghc/.... Finally, I ran

$ cabal install --reinstall $(cat list) 

This worked for me. You should maybe do --dry-run first. Then go make a pot of tea. Or bake a cake.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.