aboutsummaryrefslogtreecommitdiff
path: root/debug (follow)
AgeCommit message (Collapse)AuthorFilesLines
2014-12-21Avoid variable-length arrays in the debug programs.Lasse Collin2-2/+4
2012-07-05Docs: Fix the name LZMA Utils -> XZ Utils in debug/README.Lasse Collin1-1/+1
2012-07-05Include debug/translation.bash in the distribution.Lasse Collin1-0/+3
Also fix the script name mentioned in README.
2010-10-05Build: Remove the static/dynamic tricks.Lasse Collin1-4/+1
Most distros want xz linked against shared liblzma, so it doesn't help much to require --enable-dynamic for that. Those who want to avoid PIC on x86-32 to get better performance, can still do it e.g. by using --disable-shared to compile xz and then another pass to compile shared liblzma. Part of these static/dynamic tricks were needed for Windows in the past. Nowadays we rely on GCC and binutils to do the right thing with auto-import. If the Autotooled build system needs to support some other toolchain on Windows in the future, this may need some rethinking.
2010-09-23Add translations.bash and translation notes to README.Lasse Collin1-0/+100
translations.bash prints some messages from xz, which hopefully makes it a bit easier to test translations.
2010-05-26Rename MIN() and MAX() to my_min() and my_max().Lasse Collin2-2/+2
This should avoid some minor portability issues.
2010-05-26Fix compilation of debug/known_sizes.c.Lasse Collin1-1/+1
2010-05-26Remove references to Subblock filter in debug/sync_flush.c.Lasse Collin1-13/+0
2009-11-14Update the debug programs so that they compile again.Lasse Collin3-7/+14
2009-08-27Fix the debug directory.Lasse Collin5-2/+7
6a2eb54092fc625d59921a607ff68cd1a90aa898 and 71f18e8a066a01dda0c8e5508b135ef104e43e4c required some changes that weren't applied in debug.
2009-06-26Fix @variables@ to $(variables) in Makefile.am files.Lasse Collin1-6/+6
Fix the ordering of libgnu.a and LTLIBINTL on the linker command line and added missing LTLIBINTL to tests/Makefile.am.
2009-04-13Put the interesting parts of XZ Utils into the public domain.Lasse Collin8-74/+24
Some minor documentation cleanups were made at the same time.
2009-01-26remove trailing blanks from all but .xz filesJim Meyering1-1/+1
2008-12-31Update some files in debug directory.Lasse Collin3-6/+0
2008-11-19Oh well, big messy commit again. Some highlights:Lasse Collin4-10/+10
- Updated to the latest, probably final file format version. - Command line tool reworked to not use threads anymore. Threading will probably go into liblzma anyway. - Memory usage limit is now about 30 % for uncompression and about 90 % for compression. - Progress indicator with --verbose - Simplified --help and full --long-help - Upgraded to the last LGPLv2.1+ getopt_long from gnulib. - Some bug fixes
2008-09-27Some API changes, bug fixes, cleanups etc.Lasse Collin4-22/+31
2008-09-13Renamed constants:Lasse Collin3-3/+3
- LZMA_VLI_VALUE_MAX -> LZMA_VLI_MAX - LZMA_VLI_VALUE_UNKNOWN -> LZMA_VLI_UNKNOWN - LZMA_HEADER_ERRRO -> LZMA_OPTIONS_ERROR
2008-09-11Simplified debug/known_sizes.c to match the relaxedLasse Collin1-9/+5
requirements of Block encoder.
2008-08-28Sort of garbage collection commit. :-| Many things are stillLasse Collin7-14/+267
broken. API has changed a lot and it will still change a little more here and there. The command line tool doesn't have all the required changes to reflect the API changes, so it's easy to get "internal error" or trigger assertions.
2008-06-18Update the code to mostly match the new simpler file formatLasse Collin2-21/+10
specification. Simplify things by removing most of the support for known uncompressed size in most places. There are some miscellaneous changes here and there too. The API of liblzma has got many changes and still some more will be done soon. While most of the code has been updated, some things are not fixed (the command line tool will choke with invalid filter chain, if nothing else). Subblock filter is somewhat broken for now. It will be updated once the encoded format of the Subblock filter has been decided.
2008-04-25Added memusage.c to debug directory.Lasse Collin2-1/+57
2008-01-23Added debug/full_flush.c.Lasse Collin2-1/+107
2008-01-20Updated debug/sync_flush.c.Lasse Collin1-2/+24
2008-01-20Added debug/repeat.c.Lasse Collin2-0/+44
2008-01-18Added the debug directory and the first debug toolLasse Collin3-0/+163
(sync_flush). These tools are not built unless the user runs "make" in the debug directory.