Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [bench] Use higher resolution timer on POSIX | Nick Terrell | 2017-10-17 | 2 | -41/+110 |
| | | | | | | | The timer used was only accurate up to 0.01 seconds. This timer is accurate up to 1 ns. It is a monotonic timer that measures the real time difference, not on CPU time. Copied the benchmark code from https://github.com/facebook/zstd/commit/6ab4d5e9041aba962a810ffee191f95897c6208e | ||||
* | lz4cli : minor rewrite of lz4c legacy commands | Yann Collet | 2017-10-15 | 1 | -12/+13 |
| | | | | for clarity | ||||
* | lz4cli : removed extension artefacts | Yann Collet | 2017-10-15 | 1 | -15/+7 |
| | | | | It used to be useful for an old Windows variant which is no longer maintained. | ||||
* | Read the Dictionary into a Circular Buffer | W. Felix Handte | 2017-10-10 | 1 | -22/+49 |
| | |||||
* | Add Dictionary Support to the Command Line Tool | W. Felix Handte | 2017-10-10 | 3 | -4/+109 |
| | |||||
* | fixed a bunch of -Wcomma warnings | Yann Collet | 2017-09-10 | 3 | -4/+13 |
| | | | | reported by @rvandermeulen (#398) | ||||
* | bench : made decompression speed evaluation same time as compression | Yann Collet | 2017-09-07 | 1 | -3/+3 |
| | | | | minor : slightly modified an example do avoid disabling a gcc warning through #pragma | ||||
* | minor Makefile fixes | Yann Collet | 2017-09-07 | 1 | -8/+8 |
| | |||||
* | build: source files sorted in a FS independent manner | Yann Collet | 2017-08-26 | 1 | -3/+3 |
| | | | | | to be more compatible with reproducible builds. patch inspired by @bmwiedemann | ||||
* | fixed make recurrence from /tests | Yann Collet | 2017-08-25 | 1 | -4/+5 |
| | |||||
* | minor : added header license | Yann Collet | 2017-08-24 | 1 | -1/+1 |
| | |||||
* | fixed man directory installation (#337) | Yann Collet | 2017-08-24 | 1 | -3/+4 |
| | | | | also : lz4c is now a symlink to lz4 | ||||
* | Merge branch 'dev' into installVars and fixed conflicts | Yann Collet | 2017-08-15 | 2 | -6/+7 |
|\ | |||||
| * | cli : restored command -BX to enable block checksum (#322) | Yann Collet | 2017-08-12 | 2 | -6/+7 |
| | | |||||
* | | lz4c legacy commands are now enabled at runtime based on link/binary name "lz4c" | Yann Collet | 2017-08-14 | 2 | -37/+35 |
| | | | | | | | | | | | | | | | | | | instead of selected at compilation time depending on a macro. This design makes it possible to have a single binary which supports both modes. An advantageous side effect is that when doing `make; make install` no additional binary is created during `make install` (it used to create `lz4c`, because `make` would only build `lz4`) | ||||
* | | better respect GNU standard Makefile conventions | Yann Collet | 2017-08-14 | 1 | -17/+24 |
|/ | | | | | | supports lowercase directory variables add an "Installation" section in README.md added an INSTALL file | ||||
* | updated man page | Yann Collet | 2017-08-07 | 2 | -13/+26 |
| | |||||
* | Fix formatting of concatenation example | FeRD (Frank Dana) | 2017-07-08 | 1 | -6/+2 |
| | | | | | | The "Concatenation of .lz4 files" section contains example commands that are run together on one line, making them invalid. Wrap them in a code block and clean up surrounding formatting. | ||||
* | Fix gcc7 Wimplicit-fallthrough warnings | Chocobo1 | 2017-06-19 | 1 | -1/+2 |
| | | | | | For the default Wimplicit-fallthrough=3 level, the comment should start with "fall*" | ||||
* | -g compilation flag not by default for lz4 cli | Yann Collet | 2017-06-13 | 1 | -1/+1 |
| | |||||
* | report where decompression ends (#313) | Yann Collet | 2017-06-12 | 1 | -39/+60 |
| | | | | | suggested by @ehem note : only works for files < 2 GB | ||||
* | cli accept block sizes with KB / MB prefixes | Yann Collet | 2017-05-26 | 1 | -2/+10 |
| | |||||
* | updated Makefile | Yann Collet | 2017-05-10 | 1 | -16/+10 |
| | | | | | to automatically build manual files with make all | ||||
* | lz4cli.c: fix a comment: LZ4HC_DEFAULT_CLEVEL -> LZ4HC_CLEVEL_MAX | Alexey Tourbin | 2017-04-29 | 1 | -1/+1 |
| | | | | Actually the program only mentions LZ4HC_CLEVEL_MAX. | ||||
* | Fix inline compile errors | Sean Purcell | 2017-03-27 | 1 | -1/+1 |
| | |||||
* | Fix IS_CONSOLE returning 1 for NUL on windows | Sean Purcell | 2017-03-27 | 1 | -1/+10 |
| | |||||
* | Merge pull request #341 from iburinoc/exematch | Yann Collet | 2017-03-25 | 1 | -6/+15 |
|\ | | | | | Ignore extensions in exe name matching | ||||
| * | Ignore extensions in exe name matching | Sean Purcell | 2017-03-24 | 1 | -6/+15 |
| | | |||||
* | | cli: add GNU separator -- specifying that all following arguments are files | Dmitry V. Levin | 2017-03-23 | 2 | -1/+6 |
| | | | | | | | | | | This option is supported by other compressors with compatible cli, so add it to lz4 as well for better compatibility. | ||||
* | | LZ4_compress_HC_destSize() uses LZ4HC_compress_generic() code path | Yann Collet | 2017-03-16 | 1 | -1/+1 |
|/ | | | | | Limits compression level to 10, to remain compatible with Hash Chain. | ||||
* | fixed Visual compilation error | Yann Collet | 2017-03-16 | 1 | -1/+1 |
| | | | | | static const must be a "constant", like a macro even if it can be determined at compile time ... | ||||
* | fix #332 : do not modify /dev/null permissions | Yann Collet | 2017-03-16 | 2 | -42/+36 |
| | |||||
* | bench.c: respect LZ4_MAX_INPUT_SIZE limit | Przemyslaw Skibinski | 2017-03-10 | 1 | -2/+7 |
| | |||||
* | CFLAGS=-I/usr/include/x86_64-linux-gnu | Przemyslaw Skibinski | 2017-02-15 | 1 | -1/+1 |
| | |||||
* | circle.yml: fixed lz4c32 target (2) | Przemyslaw Skibinski | 2017-02-15 | 1 | -1/+1 |
| | |||||
* | Avoid fseek()'s 2GiB barrier with MinGW | Przemyslaw Skibinski | 2017-02-15 | 1 | -16/+5 |
| | |||||
* | upgraded util.h | Przemyslaw Skibinski | 2017-02-15 | 3 | -45/+62 |
| | |||||
* | updated platform.h | Przemyslaw Skibinski | 2017-02-10 | 2 | -4/+5 |
| | |||||
* | added "This Makefile is validated for" | Przemyslaw Skibinski | 2017-01-19 | 1 | -0/+2 |
| | |||||
* | Use logical or instead of bitwise or | Chocobo1 | 2017-01-12 | 1 | -1/+1 |
| | |||||
* | Fix printf specifier | Chocobo1 | 2017-01-12 | 1 | -1/+1 |
| | |||||
* | changed default PREFIX and MANDIR | Przemyslaw Skibinski | 2016-12-28 | 1 | -5/+5 |
| | |||||
* | Merge remote-tracking branch 'refs/remotes/lz4/dev' into dev | Przemyslaw Skibinski | 2016-12-27 | 3 | -16/+21 |
|\ | | | | | | | | | # Conflicts: # lib/Makefile | ||||
| * | updated Makefile : lz4 no longer recompiled when already up-to-date | Yann Collet | 2016-12-22 | 1 | -12/+17 |
| | | |||||
| * | Merge pull request #292 from inikep/dev | Yann Collet | 2016-12-22 | 6 | -178/+255 |
| |\ | | | | | | | improved POSIX | ||||
| * | | updated a few macros names | Yann Collet | 2016-12-22 | 2 | -4/+4 |
| | | | |||||
* | | | BSD: improved "make install" | Przemyslaw Skibinski | 2016-12-23 | 1 | -6/+11 |
| | | | |||||
* | | | Solaris: working "make install" | Przemyslaw Skibinski | 2016-12-22 | 1 | -12/+25 |
| | | | |||||
* | | | "make test" is now compatible with Solaris | Przemyslaw Skibinski | 2016-12-22 | 1 | -3/+3 |
| |/ |/| | |||||
* | | use FindFirstFileA and FindNextFileA on Windows | Przemyslaw Skibinski | 2016-12-22 | 2 | -4/+4 |
| | |