• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1ELFIO is a header-only C++ library - installation does not require any
2(pre)compilation step. Just copy 'elfio' folder into standard include directory.
3
4For example:
5    cp -R elfio /usr/include
6
7Alternatively, it is possible to modify compiler's include search path -
8'-I<dir>' option in GCC; '/I<dir>' in MSVC.
9
10Makefile(s) that come with the distribution package are provided only for
11compilation of example files.
12
13To compile the examples, use the commands below:
14    autoreconf -f -i
15    ./configure
16    make
17