RETIRED, further work has moved to Debian project infrastructure
Go to file
Xiaodong Liu 9d243d0ed7 Update windows config files
Signed-off-by: Xiaodong Liu <xiaodong.liu@intel.com>
2017-06-26 06:34:35 -04:00
crc crc: release crc32_gzip_refl code outside 2017-06-26 04:14:27 -04:00
erasure_code ec: Determine exact conditions where gf_gen_rs_matrix works 2017-06-26 04:11:12 -04:00
igzip igzip: Add reset functions for both deflate and inflate. 2017-06-26 04:14:44 -04:00
include igzip: Add reset functions for both deflate and inflate. 2017-06-26 04:14:44 -04:00
raid Format only patch from iindent and remove_whitespace 2017-06-26 04:10:47 -04:00
tools doc: Add build details and contributing 2017-02-24 14:50:34 -07:00
.travis.yml Update travis-cl test script to avoid old nasm 2016-06-17 15:06:12 -07:00
CONTRIBUTING.md doc: Add build details and contributing 2017-02-24 14:50:34 -07:00
Doxyfile doc: Add doxyfile for API doc creation 2017-01-11 19:14:23 -07:00
LICENSE build: Bump revision to 2.19 2017-06-26 04:47:40 -04:00
Makefile.am build: Bump revision to 2.19 2017-06-26 04:47:40 -04:00
Makefile.nmake Update windows config files 2017-06-26 06:34:35 -04:00
Makefile.unx Format only patch from iindent and remove_whitespace 2017-06-26 04:10:47 -04:00
README.md Update release notes for v2.18 additions 2017-03-30 20:22:36 -07:00
Release_notes.txt Update release notes for v2.19 additions 2017-06-26 04:51:35 -04:00
autogen.sh Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
configure.ac build: Bump revision to 2.19 2017-06-26 04:47:40 -04:00
isa-l.def Update windows config files 2017-06-26 06:34:35 -04:00
libisal.pc.in Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
make.inc build: Bump revision to 2.19 2017-06-26 04:47:40 -04:00

README.md

Intel(R) Intelligent Storage Acceleration Library

Build Status

ISA-L is a collection of optimized low-level functions targeting storage applications. ISA-L includes:

  • Erasure codes - Fast block Reed-Solomon type erasure codes for any encode/decode matrix in GF(2^8).
  • CRC - Fast implementations of cyclic redundancy check. Six different polynomials supported.
    • iscsi32, ieee32, t10dif, ecma64, iso64, jones64.
  • Raid - calculate and operate on XOR and P+Q parity found in common RAID implementations.
  • Compression - Fast deflate-compatible data compression.
  • De-compression - Fast inflate-compatible data compression.

Also see:

Building ISA-L

Prerequisites

  • yasm version 1.2.0 or later or nasm v2.11.01 or later.
  • gcc, clang, icc or VC compiler.
  • GNU 'make' or 'nmake' (Windows).
  • Building with autotools requires autoconf/automake packages.

Autotools

To build and install the library with autotools it is usually sufficient to run:

./autogen.sh
./configure
make
sudo make install

Makefile

To use a standard makefile run:

make -f Makefile.unx

Windows

On Windows use nmake to build dll and static lib:

nmake -f Makefile.nmake

Other make targets

Other targets include:

  • make check : create and run tests
  • make tests : create additional unit tests
  • make perfs : create included performance tests
  • make ex : build examples
  • make other : build other utilities such as compression file tests