mirror of
https://github.com/serge1/ELFIO.git
synced 2024-11-02 02:26:47 +00:00
17 lines
518 B
Plaintext
17 lines
518 B
Plaintext
ELFIO is a header-only C++ library - installation does not require any
|
|
(pre)compilation step. Just copy 'elfio' folder into standard include directory.
|
|
|
|
For example:
|
|
cp -R elfio /usr/include
|
|
|
|
Alternatively, it is possible to modify compiler's include search path -
|
|
'-I<dir>' option in GCC; '/I<dir>' in MSVC.
|
|
|
|
Makefile(s) that come with the distribution package are provided only for
|
|
compilation of example files.
|
|
|
|
To compile the examples, use the commands below:
|
|
autoreconf -f -i
|
|
./configure
|
|
make
|