Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
libaec
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Mathis Rosenhauer
libaec
Commits
73b91798
Commit
73b91798
authored
Nov 08, 2016
by
Daniel Lee
Committed by
Mathis Rosenhauer
Nov 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Describe install with CMake rather than configure
parent
12830329
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
13 deletions
+15
-13
INSTALL
INSTALL
+15
-13
No files found.
INSTALL
View file @
73b91798
...
...
@@ -2,14 +2,25 @@
Installation
============
The most common installation procedure on Unix-like systems looks as
follows.
The installation procedure uses CMake, as follows:
Unpack the tar archive and change into the unpacked directory.
./configure
make check install
mkdir build
cd build
cmake .. # CMAKE_INSTALL_PREFIX=~/.local
make install
You can set options for compiling using the CMake GUI by replacing the cmake
command with
cmake-gui ..
or by setting the options manually, e.g.
cmake -DCMAKE_INSTALL_PREFIX=~/local ..
in order to set the install prefix to ~/local
=======================
Intel compiler settings
...
...
@@ -26,12 +37,3 @@ On a 3.4 GHz E3-1240 v3 we see more than 400 MiB/s for encoding
typical data.
Using other SIMD instruction sets on older CPUs may also help.
=======
Windows
=======
As an alternative way to build libaec you can use CMake. CMake can
also generate project files for Microsoft Visual Studio. This allows
you to build AEC.DLL and SZIP.DLL which can be used with the Windows
version of HDF5.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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