Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t-mat/lz4mt
Platform independent, multi-threading implementation of lz4 stream in C++11
https://github.com/t-mat/lz4mt
Last synced: 17 days ago
JSON representation
Platform independent, multi-threading implementation of lz4 stream in C++11
- Host: GitHub
- URL: https://github.com/t-mat/lz4mt
- Owner: t-mat
- License: other
- Created: 2013-04-23T14:12:32.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-11-28T01:21:33.000Z (almost 3 years ago)
- Last Synced: 2024-07-31T22:49:49.473Z (3 months ago)
- Language: C++
- Homepage:
- Size: 893 KB
- Stars: 196
- Watchers: 19
- Forks: 47
- Open Issues: 18
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# lz4mt
lz4mt is platform independent, multi-threading,
[lz4 stream v1.4](https://docs.google.com/document/d/1gZbUoLw5hRzJ5Q71oPRN6TO4cRMTZur60qip-TE7BhQ/edit?pli=1)
implementation in C++11.## Building for MSVC2012 / 2013 (Visual Studio Express 2012 / 2013 for Windows Desktop)
- Run `build.bat` (or `build_vs2013.bat`).
- Executable file will be created in `platform_msvc2012/` (or `platform_msvc2013/`).## Building for Linux
- Run `make`.
- `./lz4mt` will be created.## Building for Linux with Clang
- Run `make CXX=clang++ CC=clang`
- `./lz4mt` will be created.## See also
- [lz4 Extremely Fast Compression algorithm](https://code.google.com/p/lz4/)