Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move to using C rather than C++ for compilation | Max Dymond | 2019-06-28 | 1 | -0/+1 |
| | |||||
* | Add a fuzzing target that compiles in the oss-fuzz environment | Max Dymond | 2019-06-28 | 1 | -0/+1 |
| | |||||
* | updated tests | Yann Collet | 2019-05-16 | 1 | -4/+7 |
| | | | | | - only play listTest with `make test`, not `make all` which is limited to build - update `clangtest`, so that it's possible to disable O3 optimization, for faster processing | ||||
* | Fix a test for mingw | JPeterMugaas | 2019-04-22 | 1 | -1/+1 |
| | |||||
* | Try to put some tests I made in ONE place. I also moved a test for ↵ | JPeterMugaas | 2019-04-22 | 1 | -46/+2 |
| | | | | "install" in one place to try to isolate it. | ||||
* | Initial commits from diff I submitted earlier | JPeterMugaas | 2019-04-22 | 1 | -5/+48 |
| | |||||
* | created LZ4_initStreamHC() | Yann Collet | 2019-04-05 | 1 | -1/+5 |
| | | | | | | | | - promoted LZ4_resetStreamHC_fast() to stable - moved LZ4_resetStreamHC() to deprecated (but do not generate a warning yet) - Updated doc, to highlight difference between init and reset - switched all invocations of LZ4_resetStreamHC() onto LZ4_initStreamHC() - misc: ensure `make all` also builds /tests | ||||
* | Allow installation of lz4 for Windows 10 with MSYS2 | Vincent Torri | 2019-03-03 | 1 | -1/+1 |
| | |||||
* | Allow installation of lz4 for Windows (MSYS2 or when cross-compiling) | Vincent Torri | 2018-11-20 | 1 | -1/+1 |
| | |||||
* | added cppcheck | Yann Collet | 2018-09-18 | 1 | -0/+5 |
| | | | | | | as Makefile target and Travis CI test. Fixed last cppcheck warnings in tests and examples | ||||
* | avoid final trailing comma for enum lists | Yann Collet | 2018-09-13 | 1 | -7/+7 |
| | | | | | | | as detected in #485 by @JoachimSchneider. Refactored the c_standards tests so that these issues get automatically detected in CI tests. | ||||
* | Add support for MidnightBSD | Lucas Holt | 2018-09-08 | 1 | -1/+1 |
| | |||||
* | Test Linking C-Compiled Library and C++-Compiled Tests | W. Felix Handte | 2018-05-22 | 1 | -0/+8 |
| | |||||
* | Add Haiku as a validated target. | fbrosson | 2018-05-17 | 1 | -1/+1 |
| | | | | lz4 1.8.2 works fine on Haiku and passes all tests. | ||||
* | reduced test time on circle-ci | Yann Collet | 2018-04-11 | 1 | -2/+2 |
| | |||||
* | added c90 test to c_standards | Yann Collet | 2018-03-21 | 1 | -1/+1 |
| | | | | to catch `//` comments | ||||
* | fix #481: ensure liblz4.a dependency for `make all` | Yann Collet | 2018-03-09 | 1 | -1/+2 |
| | | | | | | | | | `make all` will trigger several sub-directory makefiles. several of them need `liblz4.a`. When built with `-j#`, there are several concurrent liblz4.a built Make liblz4.a a dependency, which is built once, before moving to sub-directory Makefiles | ||||
* | added target make check | Yann Collet | 2018-02-26 | 1 | -3/+5 |
| | | | | | | | | | | according to GNU Makefile conventions, the Makefile should feature a make check target to self-test the generated program: https://www.gnu.org/prep/standards/html_node/Standard-Targets.html . this is much less thorough and less taxing than `make test`, and can be run on any target in a reasonable timeframe (several seconds). | ||||
* | examples/Makefile : changed dependency order | Yann Collet | 2018-02-01 | 1 | -1/+1 |
| | | | | static library *.a must come after source files *.c on linux | ||||
* | Merge branch 'dev' into frameCompress | Yann Collet | 2018-02-01 | 1 | -11/+8 |
|\ | |||||
| * | modified gpptest recipe | Yann Collet | 2018-02-01 | 1 | -11/+8 |
| | | |||||
* | | refactored frameCompress example | Yann Collet | 2018-01-31 | 1 | -1/+2 |
|/ | | | | to better reflect LZ4F API usage. | ||||
* | nicer console message for `make clean` | Yann Collet | 2018-01-14 | 1 | -1/+1 |
| | |||||
* | build: minor : `make lz4` doesn't compile liblz4 anymore | Yann Collet | 2017-11-06 | 1 | -3/+3 |
| | | | | since it's not needed. | ||||
* | lz4c legacy commands are now enabled at runtime based on link/binary name "lz4c" | Yann Collet | 2017-08-14 | 1 | -1/+4 |
| | | | | | | | | | 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 | -13/+9 |
| | | | | | | supports lowercase directory variables add an "Installation" section in README.md added an INSTALL file | ||||
* | fixed c_standards tests | Yann Collet | 2017-05-10 | 1 | -10/+14 |
| | | | | and added entry "make list" | ||||
* | updated Makefile | Yann Collet | 2017-05-10 | 1 | -44/+37 |
| | | | | | to automatically build manual files with make all | ||||
* | Merge pull request #316 from inikep/dev | Yann Collet | 2017-02-10 | 1 | -4/+4 |
|\ | | | | | Dev | ||||
| * | added OpenBSD NetBSD SunOS to list of supported `make install` OSes | Przemyslaw Skibinski | 2017-02-10 | 1 | -4/+4 |
| | | |||||
* | | update repolink in makefile | Benedikt Heine | 2017-02-10 | 1 | -1/+1 |
|/ | |||||
* | added DragonFly to list of supported `make install` OS | Yann Collet | 2017-02-09 | 1 | -1/+1 |
| | |||||
* | added "This Makefile is validated for" | Przemyslaw Skibinski | 2017-01-19 | 1 | -0/+2 |
| | |||||
* | minor fix for travis-install test | Yann Collet | 2016-12-21 | 1 | -2/+2 |
| | |||||
* | minor update Makefile | Yann Collet | 2016-12-21 | 1 | -0/+1 |
| | |||||
* | fix `make` concurrency build (#277) | Yann Collet | 2016-12-15 | 1 | -1/+3 |
| | |||||
* | added a few dates | Yann Collet | 2016-11-21 | 1 | -1/+1 |
| | |||||
* | added examples to make all | Yann Collet | 2016-11-21 | 1 | -0/+3 |
| | |||||
* | fixed #272 (compilation fails on gcc 4.4), reported by @totaam | Yann Collet | 2016-11-19 | 1 | -1/+5 |
| | |||||
* | usan32 relies on default compiler (by default) | Yann Collet | 2016-11-18 | 1 | -1/+1 |
| | |||||
* | switch usan32 tests to gcc-5 | Yann Collet | 2016-11-18 | 1 | -4/+4 |
| | |||||
* | added sanitize32 tests to Travis | Yann Collet | 2016-11-18 | 1 | -0/+3 |
| | |||||
* | fixed Travis test cases | Yann Collet | 2016-11-17 | 1 | -6/+6 |
| | |||||
* | fix 32-bits mode. | Yann Collet | 2016-11-17 | 1 | -4/+7 |
| | | | | | | Large File support for Mac OS-X in 32-bits mode Fixed potential undefined behavior Changed makefile for 32-bits mode | ||||
* | clang and g++ tests restricted to native only on Travis CI Ubuntu v12 ↵ | Yann Collet | 2016-11-14 | 1 | -4/+18 |
| | | | | environment | ||||
* | fixed conversion warnings | Yann Collet | 2016-11-14 | 1 | -1/+4 |
| | |||||
* | fuzzer code refactoring | Yann Collet | 2016-11-13 | 1 | -5/+5 |
| | | | | fix g++ conversion warning | ||||
* | better MSYS/MinGW support | Przemyslaw Skibinski | 2016-11-10 | 1 | -16/+31 |
| | |||||
* | reordered Travis CI tests | Przemyslaw Skibinski | 2016-11-10 | 1 | -0/+1 |
| | |||||
* | joined arm and aarch64 tests | Przemyslaw Skibinski | 2016-11-08 | 1 | -0/+2 |
| |