Hi there, while compiling the latest Generic Haskell version I got the following linker error:
UHA_Parser.o(.text+0x117f13): In function `r18Ks_entry': : undefined reference to `DataziTuple_Z94T_con_info' collect2: ld returned 1 exit status The file "UHA_Parser.hs" is a generated parser for the language, using Ralf Hinze's "frown" parser generator. When I first saw the error, I expected that too large tuples might be used in that file (motivated by the undefined reference containing the work "Tuple" and the number "94", which is higher than the GHC maximum as declared in the User's guide), but browsing through the file it does not seem to make much use of tuples at all. In the meantime I found out that using -O2 to compile UHA_Parser will circumvent the bug, so it is not really a problem. The bug occurs with both yesterday's CVS 5.05 version and 5.04. I can try to produce a better bug description by cutting down the size of the involved files at least a little bit, but I thought that maybe you already know where to look ... Best, Andres _______________________________________________ Glasgow-haskell-bugs mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs
