Another missing CMake file.
[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. Assuming your CPU supports
19 AVX2, the following options will increase encoding speed.
20
21   ./configure CC=icc
22   make CFLAGS="-O3 -xCORE-AVX2" bench
23
24 On a 3.4 GHz E3-1240 v3 we see more than 400 MiB/s for encoding
25 typical data.
26
27 Using other SIMD instruction sets on older CPUs may also help.