Actually, it appears that the .hl file isn't in gzipped format:
$ zcat base-1.0.hl
gzip: base-1.0.hl: not in gzip format
Should it be? Or is zlib being used on parts of the file?
David
On Thu, Aug 27, 2009 at 10:31 AM, David
Roundy
You've hit it on the head!
$ jhc --show-ho base-1.0.hl base-1.0.hl user error (Codec.Compression.Zlib: incompatible zlib version)
$ ghc-pkg latest zlib zlib-0.5.2.0
Does this mean my haskell zlib package (which I installed expressly for jhc) is itself broken, or that it's incompatible with jhc?
David
On Thu, Aug 27, 2009 at 9:18 AM, John Meacham
wrote: Hmm.. that is strange. if it is reading them then not listing them, that means that it is rejecting them for some reason like being unable to decode them. what versions of 'binary' and 'zlib' do you have? I don't think their format changed, but that would be a possibility. what does jhc --show-ho on the library file show?
John
-- David Roundy