Albert Lai <[EMAIL PROTECTED]> writes:

> I try to build ghc 4.08.2 with parallelism turned on, i.e., GhcLibsWays=mp.
> At ghc/rts/parallel/HLComms.c line 550:
> 
>   GarbageCollect(GetRoots);
> 
> it barfs because the new GarbageCollect() function expects a boolean
> parameter after the first parameter.  (See ghc/rts/Storage.h for example.)

For now, I will just steal the code from gum 4.06 and replace this
(and all other occurences in HLComms.c) by

  GarbageCollect(GetRoots, rtsFalse);

and hope it works.

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

Reply via email to