From: Matthew M. <mat...@gm...> - 2005-09-22 01:11:09
|
I tried building HOC from CVS using ghc 6.4.1 and gcc 4.0 (on Tiger), but got a link error citing an undefined symbol, _fprintf$LDBLStub.=20 The following change to HOC_cbits/Makefile.in fixes the problem: 33c33 < ld -r -x -o HOC_cbits.o $(ALL_LOAD) libHOC_cbits.a --- > ld -r -x -o HOC_cbits.o -lSystemStubs $(ALL_LOAD) libHOC_cbits.a This probably isn't the Right Fix, but it's at least a quick way to get HOC running. - Matt -- http://www.matthewmorgan.net/blog |