ELFIO - ELF (Executable and Linkable Format) reader and producer implemented as a header only C++ library
Go to file
Kamay Xutax 7227a0913f Fix sign-compare error
I just noticed that on my compiler;
probably due to recent version, not sure.
2022-07-18 19:01:22 +03:00
.github/workflows Address warnings reported by Windows compilation 2022-02-26 01:56:52 +02:00
.vscode An attempt to address unusual case where 'note' size is larger than Elf_Word 2022-06-21 08:07:06 +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 Fix sign-compare error 2022-07-18 19:01:22 +03:00
examples ELFIO moved to CMake completely. Remove all autotools files 2022-02-08 10:38:40 +02:00
tests Add ASAN sanitizer to the fuzzer 2022-06-21 16:41:20 +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.