Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mathis Rosenhauer
libaec
Commits
4c39d94d
Commit
4c39d94d
authored
Aug 01, 2013
by
Mathis Rosenhauer
Browse files
Require C99
parent
4157870c
Changes
2
Hide whitespace changes
Inline
Side-by-side
INSTALL
View file @
4c39d94d
============
Installation
============
The most common installation procedure looks as follows.
Unpack the tar archive and change into the unpacked directory.
./configure
make check install
=======================
Intel compiler settings
=======================
The Intel compiler can improve performance by vectorizing certain
parts of the code on x86 architectures.
./configure CC=icc
make CFLAGS="-O3 -xCORE-AVX2"
This assumes that you have a CPU which supports AVX2.
configure.ac
View file @
4c39d94d
...
...
@@ -12,6 +12,7 @@ AM_INIT_AUTOMAKE
# Checks for programs.
AC_PROG_CC
AC_PROG_CC_C99
# Checks for libraries.
AC_CHECK_LIB([aec], [aec_decode])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment