ELFIO - ELF (Executable and Linkable Format) reader and producer implemented as a header only C++ library
Go to file
2022-06-19 23:21:56 +03:00
.github/workflows Address warnings reported by Windows compilation 2022-02-26 01:56:52 +02:00
.vscode Make sure that dynamic section entry size is larger than ElfXX_Dyn structure 2022-06-19 23:21:56 +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 Make sure that dynamic section entry size is larger than ElfXX_Dyn structure 2022-06-19 23:21:56 +03:00
examples ELFIO moved to CMake completely. Remove all autotools files 2022-02-08 10:38:40 +02:00
tests Prevent memory access to data out the notes' section 2022-06-19 17:37:22 +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
.travis.yml An attempt to fix Travis build 2022-02-25 21:20:04 +02:00
CMakeLists.txt Return back the 'check' command 2022-02-27 23:34:09 +02:00
LICENSE.txt ELFIO moved to CMake completely. Remove all autotools files 2022-02-08 10:38:40 +02:00
README.md Update documentation - add array accessor description 2021-01-13 11:19:26 +02:00

ELFIO

Build 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.