This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
|
|
liblzma example programs
|
|
========================
|
|
|
|
Introduction
|
|
|
|
The examples are written so that the same comments aren't
|
|
repeated (much) in later files.
|
|
|
|
On POSIX systems, the examples should build by just typing "make".
|
|
|
|
The examples that use stdin or stdout don't set stdin and stdout
|
|
to binary mode. On systems where it matters (e.g. Windows) it is
|
|
possible that the examples won't work without modification.
|
|
|
|
|
|
List of examples
|
|
|
|
01_compress_easy.c Multi-call compression using
|
|
a compression preset
|
|
|
|
02_decompress.c Multi-call decompression
|
|
|
|
03_compress_custom.c Like 01_compress_easy.c but using
|
|
a custom filter chain
|
|
(x86 BCJ + LZMA2)
|
|
|
|
04_compress_easy_mt.c Multi-threaded multi-call
|
|
compression using a compression
|
|
preset
|
|
|