ELFIO - ELF (Executable and Linkable Format) reader and producer implemented as a header only C++ library
Go to file
2022-09-01 16:20:42 +03:00
.github/workflows Update codeql-analysis.yml 2022-09-01 08:53:50 +03:00
.vscode Change 'launch' arguments 2022-08-29 08:21:17 +03:00
cmake Add cmake install support for vcpkg integration 2020-10-30 00:29:18 +02:00
doc Add missing semicolon in the documentation 2021-07-23 16:55:58 +03:00
elfio Add missing <array> include 2022-09-01 16:20:42 +03:00
examples Use unique_ptr instead of raw pointers 2022-08-29 08:20:07 +03:00
tests Use unique_ptr instead of raw pointers 2022-08-29 08:20:07 +03:00
.clang-format Reformat sources by using clang-format 2020-08-21 07:56:08 -07:00
.gitignore Add check for incorrect section/segment entry size 2022-06-18 22:47:37 +03:00
CMakeLists.txt In case of the top project, build examples and tests by default 2022-07-09 16:25:29 +03:00
LICENSE.txt ELFIO moved to CMake completely. Remove all autotools files 2022-02-08 10:38:40 +02:00
README.md Remove Travis badge 2022-07-04 04:46:39 +00:00

ELFIO

C/C++ CI CodeQL Documentation License

ELFIO is a header-only C++ library intended for reading and generating files in the ELF binary format. It is used as a standalone library - it is not dependent on any other product or project. Adhering to ISO C++, it compiles on a wide variety of architectures and compilers.

While written in C++, the library also provides a C-language interface wrapper.

The full library documentation can be found in ELFIO - Tutorial and User Manual.