Go to file
Greg Tucker 81c8c823cd Fix configure for a strict shell
The 'test ==' can give issues under some shells 'test =' is better.

Reported-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
2017-01-20 16:04:47 -07:00
crc crc64: cache prefetch optimization 2016-12-06 15:58:38 -07:00
erasure_code build: Fix an include path to be srcdir relative 2016-12-02 16:54:40 -07:00
igzip igzip: Add copyright notice 2016-12-06 21:06:10 -07:00
include doc: Fix igzip header description for isal_create_hufftables 2017-01-11 10:31:44 -07:00
raid Add raid unit 2016-04-26 15:58:49 -07:00
tools Convert files to build with nasm or yasm 2016-02-25 17:32:34 -07:00
.travis.yml Update travis-cl test script to avoid old nasm 2016-06-17 15:06:12 -07:00
autogen.sh Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
configure.ac Fix configure for a strict shell 2017-01-20 16:04:47 -07:00
Doxyfile doc: Add doxyfile for API doc creation 2017-01-11 19:14:23 -07:00
isa-l.def Update windows config files 2016-12-06 22:42:20 -07:00
libisal.pc.in Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
LICENSE Add data compression unit 2016-06-10 17:03:38 -07:00
make.inc doc: Add doxyfile for API doc creation 2017-01-11 19:14:23 -07:00
Makefile.am doc: Add doxyfile for API doc creation 2017-01-11 19:14:23 -07:00
Makefile.nmake Update windows config files 2016-12-06 22:42:20 -07:00
Makefile.unx Add data compression unit 2016-06-10 17:03:38 -07:00
README.md Update readme with new function list 2016-12-06 23:00:34 -07:00
Release_notes.txt Update release notes for v2.17 additions 2016-12-06 21:28:52 -07:00

================================================= 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.

See ISA-L for updates. For crypto functions see isa-l_crypto on github.

Build Prerequisites

ISA-L requires yasm version 1.2.0 or later or nasm v2.11.01 or later. Building with autotools requires autoconf/automake packages.

Building ISA-L

Autotools

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

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

Other targets include: make check, make tests, make perfs, make ex (examples) and make other.

Windows

On Windows use nmake to build dll and static lib:

nmake -f Makefile.nmake

Other targes include: nmake check.