Lines Matching +full:- +full:- +full:test +full:- +full:large +full:- +full:data
1 ------------------------------------------------------------------
3 lossless, block-sorting data compression.
6 Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
13 ------------------------------------------------------------------
17 myself for x86-linux and amd64-linux. With makefile.msc, Visual C++
18 6.0 and nmake, you can build a native Win32 version too. Large file
19 support seems to work correctly on at least on amd64-linux.
21 When I say "large file" I mean a file of size 2,147,483,648 (2^31)
23 but many newer ones can. Large files are pretty huge -- most files
24 you'll encounter are not Large Files.
28 in that tradition. However, in order to support large files, I've had
29 to include the define -D_FILE_OFFSET_BITS=64 in the Makefile. This
32 The technique of adding -D_FILE_OFFSET_BITS=64 to get large file
33 support is, as far as I know, the Recommended Way to get correct large
34 file support. For more details, see the Large File Support
35 Specification, published by the Large File Summit, at
37 http://ftp.sas.com/standards/large.file
40 are related to large file support, try removing the above define from
43 BIGFILES=-D_FILE_OFFSET_BITS=64
46 version of bzip2 without large file support, which, for most
49 Alternatively, try some of the platform-specific hints listed below.
51 You can use the spewG.c program to generate huge files to test bzip2's
52 large file support, if you are feeling paranoid. Be aware though that
56 AIX: I have reports that for large file support, you need to specify
57 -D_LARGE_FILES rather than -D_FILE_OFFSET_BITS=64. I have not tested