Closed GoogleCodeExporter closed 8 years ago
I will look into it.
Original comment by yann.col...@gmail.com
on 17 Mar 2012 at 9:04
For some reason, i was unable to reproduce the issue using the file input.txt
provided here.
The test is done in a vmWare Ubuntu64 11.10 VM, host CPU is Core 2 Duo. The
binary compiled is a 64-bit one (provided in attached file). I made 3
verification tests, using your program (roundtrip), a comparison script (cmp)
and internal checksum (-b). All seem to work so far on input.txt.
Original comment by yann.col...@gmail.com
on 17 Mar 2012 at 9:27
Attachments:
After paying closer attention to your Makefile, I see the difference. Within
roundtrip.c, I am including the c file instead of the header file and simply
compiling like so 'gcc roundtrip.c'. This has worked fine for me in the past
with other libraries. When I switch to how you're doing it with multiple c
files (include the header file instead of the c file and compile with 'gcc
lz4.c rountrip.c') the problem disappears. I'm not fluent enough in C to
understand why it matters in this particular case, but as long as I see a
resolution, we can call this issue closed.
Original comment by g...@cpan.org
on 17 Mar 2012 at 10:23
OK.
It's strange, because i've compiled graytest64 using your methodology
(including lz4.c), and it did not advertised any issue.
Using separated lz4.h/lz4.c is necessary in case LZ4 functions are called in
several places of the code. Otherwise, including several times lz4.c would
generate duplicate, and linking stage would fail.
But in this particular situation, there is only one single file, so it should
work the same...
Well, anyway, as long as you've got a solution... Let's call it closed, for now.
Original comment by yann.col...@gmail.com
on 17 Mar 2012 at 11:06
Original comment by yann.col...@gmail.com
on 17 Mar 2012 at 11:07
Original issue reported on code.google.com by
g...@cpan.org
on 17 Mar 2012 at 12:39