> Certainly.
> 
> We've just spent lots of time trying to get this stuff to be utterly 
> painless to compile, so please let us know if the instructions below 
> give you any trouble.

The problem is that you didn't compile the whole program with -prof: the
BareBonesArrows library was compiled the normal way, and the rest of the
files were compiled with -prof.  When using -prof, you have to make sure
the whole program, including libraries, are compiled with -prof,
otherwise disaster will ensue because different parts of the program are
using different representations for fundamental data structures.

Build system wibbles: I had to remove the line

  .INTERMEDIATE: $(all_lib_objects)

from Makefile.common, otherwise GNU make seems to ignore all the
dependencies.  I'm not sure whether this is a bug in the version of GNU
make we're using or not (version 3.78.1).

Cheers,
        Simon

_______________________________________________
Glasgow-haskell-bugs mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Reply via email to