Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
libaec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mathis Rosenhauer
libaec
Commits
26761b8b
Commit
26761b8b
authored
8 years ago
by
Mathis Rosenhauer
Browse files
Options
Downloads
Patches
Plain Diff
Mention autoconf and location of repository
parent
73b91798
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
INSTALL
+54
-4
54 additions, 4 deletions
INSTALL
with
54 additions
and
4 deletions
INSTALL
+
54
−
4
View file @
26761b8b
============
Getting libaec
==============
The source code of libaec is hosted at DKRZ GitLab.
## Source code and binary releases
The latest releases of libaec can be downloaded at the following
location:
https://gitlab.dkrz.de/k202009/libaec/tags
## Developer snapshot
git clone https://gitlab.dkrz.de/k202009/libaec.git
Installation
============
The installation procedure uses CMake, as follows:
## Installation from source code release with configure
The most common installation procedure on Unix-like systems looks as
follows:
Unpack the tar archive and change into the unpacked directory.
mkdir build
cd build
../configure
make check install
## Installation from source code release with CMake
As an alternative, you can use CMake to install libaec.
Unpack the tar archive and change into the unpacked directory.
...
...
@@ -22,7 +52,27 @@ or by setting the options manually, e.g.
in order to set the install prefix to ~/local
=======================
CMake can also generate project files for Microsoft Visual Studio when
used in Windows.
## Installation from cloned repository
The configure script is not included in the repository. You can
generate it with autotools:
cd libaec
autoreconv -iv
mkdir build
cd build
../configure
Also not included are CCSDS sample data which are needed for
testing. They have to be downloaded prior to running 'make check':
make update-sampledata
make check install
Intel compiler settings
=======================
...
...
@@ -30,7 +80,7 @@ The Intel compiler can improve performance by vectorizing certain
parts of the code on x86 architectures. Assuming your CPU supports
AVX2, the following options will increase encoding speed.
./configure CC=icc
.
./configure CC=icc
make CFLAGS="-O3 -xCORE-AVX2" bench
On a 3.4 GHz E3-1240 v3 we see more than 400 MiB/s for encoding
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment