test encoding for some files
[platform/upstream/libaec.git] / INSTALL
1 ============
2 Installation
3 ============
4
5 The most common installation procedure looks as follows.
6
7 Unpack the tar archive and change into the unpacked directory.
8
9   ./configure
10   make check install
11
12
13 =======================
14 Intel compiler settings
15 =======================
16
17 The Intel compiler can improve performance by vectorizing certain
18 parts of the code on x86 architectures.
19
20   ./configure CC=icc
21   make CFLAGS="-O3 -xCORE-AVX2"
22
23 This assumes that you have a CPU which supports AVX2.