summaryrefslogtreecommitdiffstats
path: root/programs
Commit message (Collapse)AuthorAgeFilesLines
* updated links to LZ4 repositoryPrzemyslaw Skibinski2016-11-037-7/+7
|
* test programs moved to tests/Przemyslaw Skibinski2016-11-035-3234/+2
|
* fix for ARM platformYann Collet2016-11-021-2/+2
|
* Clarified license (#115, #244)Yann Collet2016-11-021-0/+7
|
* moved cmake and debian directories to contrib (#245)Yann Collet2016-11-021-5/+5
|
* fixed #247, reported by Felix BolteYann Collet2016-11-011-205/+144
|
* fixes static compilation under Windows (#246)Yann Collet2016-10-211-0/+3
|
* Merge pull request #238 from kou/add-lz4lib-apiYann Collet2016-09-231-1/+1
|\ | | | | Add LZ4LIB_API
| * Add LZ4LIB_APIKouhei Sutou2016-09-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | It's based on Zstandard's ZSTDLIB_API. See also: https://github.com/Cyan4973/lz4/issues/216#issuecomment-226245432 Deprecated functions aren't LZ4LIB_API targets. Because we don't need to export deprecated functions from now. There are same LZ4LIB_API definitions in each header files instead of including a common header file because LZ4_DEPRECATED is defined so.
* | Use lower case for header file nameKouhei Sutou2016-09-221-1/+1
|/ | | | | | "WinIoCtl.h" works on Windows because Windows uses case insensitive file system. But it doesn't work on GNU/Linux (for cross compiling with MinGW) because GNU/Linux uses case sensitive file system.
* updated uninstallYann Collet2016-09-171-17/+17
|
* removed test artefactsYann Collet2016-09-061-5/+0
|
* datagen depends on lz4.h for version stringYann Collet2016-09-052-10/+12
|
* fixed LZ4 repository linksinikep2016-09-053-6/+6
|
* Merge remote-tracking branch 'refs/remotes/Cyan4973/dev' into devinikep2016-09-036-434/+151
|\ | | | | | | | | # Conflicts: # programs/Makefile
| * lz4 version source from lz4.hYann Collet2016-09-031-5/+3
| |
| * frametest depends on standard C time.h onlyYann Collet2016-09-031-60/+19
| |
| * fullbench depends on standard C time.h onlyYann Collet2016-09-031-151/+79
| |
| * fuzzer depends on standard C time.h onlyYann Collet2016-09-033-175/+20
| |
| * lz4cli version number from lz4.hYann Collet2016-09-032-44/+31
| |
* | CFLAGS += $(MOREFLAGS)inikep2016-09-031-0/+1
| |
* | remove EnablePREfast=true for Win32inikep2016-09-021-0/+1
| |
* | update IncludePathinikep2016-09-021-3/+0
|/
* added <string.h> for strlen()inikep2016-09-021-0/+2
|
* -b# and -e# options from zstdinikep2016-09-023-25/+63
|
* fix mingw64 compilation warningsinikep2016-09-023-1/+8
|
* request POSIX.2001 definitions for fileno()Georg Sauthoff2016-08-271-1/+2
| | | | | | | | | | | | | this also fixes compilation on Solaris 10 cf. feature_test_macros(7) Linux man page: > _POSIX_SOURCE > Defining this obsolete macro with any value is equivalent to defin‐ > ing _POSIX_C_SOURCE with the value 1. > > Since this macro is obsolete, its usage is generally not documented > when discussing feature test macro requirements in the man pages.
* Fixed #157 : LZ4F_getFrameInfo() fails on valid null-content frameYann Collet2016-08-111-25/+39
|
* Minor fuzzer code refactoringYann Collet2016-08-111-93/+62
|
* fixed : fuzzer test, reported by @setharnold (#203)Yann Collet2016-08-101-5/+5
|
* minor refactoring changesYann Collet2016-08-103-71/+35
|
* Updated xxhash library to v0.6.1Yann Collet2016-06-292-9/+11
|
* stronger compilation flagsYann Collet2016-06-291-4/+4
|
* modified : some more deprecated functions from lz4hc.h generate warningsYann Collet2016-06-291-0/+3
|
* changed : default benchmark LZ4_decompress_safe()Yann Collet2016-06-291-4/+4
|
* Fixed : alignment warningYann Collet2016-06-291-0/+3
|
* minor refactoringYann Collet2016-06-291-0/+5
|
* fixed display result issue when benchmarking multiple filesYann Collet2016-06-291-1/+3
|
* minor code refactoringYann Collet2016-06-291-15/+10
|
* Reduced bench dependency to standard C <time.h>Yann Collet2016-06-291-68/+39
| | | | | Faster tests More accurate results on systems with high resolution clocks
* minor compression speed improvementYann Collet2016-06-291-71/+52
|
* minor refactoring (coding style)Yann Collet2016-06-292-51/+34
|
* Add FreeBSD to install targetsMartin Waschbüsch2016-05-171-2/+3
| | | | Add FreeBSD to install targets
* lz4cli: print library versionJohn Zhuge2016-04-011-2/+5
|
* Remove whitespace from ends of linesJulius Werner2016-02-131-11/+11
| | | | | | | I'm trying to import LZ4 code into a project with strict linting requirements. This will make that easier. Signed-off-by: Julius Werner <jwerner@chromium.org>
* Merge pull request #182 from kou/add-missing-extYann Collet2016-01-101-9/+9
|\ | | | | Add missing $(EXT)
| * Add missing $(EXT)Kouhei Sutou2016-01-101-9/+9
| | | | | | | | | | If the $(EXT) are added, "make install" can work with MinGW build on Linux.
* | Merge pull request #181 from kou/fix-build-failure-on-mingwYann Collet2016-01-101-1/+1
|\ \ | | | | | | Fix build error on MinGW
| * | Fix build error on MinGWKouhei Sutou2016-01-101-1/+1
| |/ | | | | | | | | Header file name is case insensitive on Windows but it is case sensitive on Linux. "Windows.h" can't be found on Linux.
* | clarified man page as suggested in #170Yann Collet2015-12-201-7/+15
| |