ELFIO - ELF (Executable and Linkable Format) reader and producer implemented as a header only C++ library
Go to file
2021-01-08 00:11:20 +02:00
.github/workflows Removed tests from CMake do to libboost dep 2020-11-02 17:19:40 +02:00
.vscode Demonstrate addition of a new section to existing ELF file 2020-10-06 09:51:14 +03:00
cmake Add cmake install support for vcpkg integration 2020-10-30 00:29:18 +02:00
doc Fix a spelling error 2020-09-09 22:37:42 +03:00
elfio Add 'validate' function to C language wrapper 2021-01-08 00:11:20 +02:00
examples Add 'validate' function to C language wrapper 2021-01-08 00:11:20 +02:00
tests Add 'validate' function to C language wrapper 2021-01-08 00:11:20 +02:00
.clang-format Reformat sources by using clang-format 2020-08-21 07:56:08 -07:00
.gitignore An attempt to add a smoke test to the main distribution 2020-10-30 19:13:21 +02:00
.travis.yml Add CMake build to Travis 2020-08-19 22:09:30 -07:00
aclocal.m4 Adjust autotools for c_interop project 2020-10-10 07:46:01 +03:00
AUTHORS Convert all files to UNIX EOL 2012-11-27 11:45:28 +02:00
autogen.sh Integrate tests into automake 2017-03-06 22:28:46 +02:00
ChangeLog Initial 2012-02-18 12:01:36 +02:00
CMakeLists.txt Enabled C++11 in CMake for examples and tests only 2020-12-11 08:58:07 +02:00
compile Adjust autotools for c_interop project 2020-10-10 07:46:01 +03:00
configure Increase version number to 3.9 2020-12-22 14:30:16 +02:00
configure.ac Rename c_interop to c_wrapper 2020-10-11 10:08:49 +03:00
COPYING Update Copyright period 2020-08-19 13:47:20 -07:00
depcomp Refresh autotools generated files 2020-06-10 07:07:14 -07:00
INSTALL Add 'autoreconf' command to INSTALL explanation 2020-08-09 23:02:00 -07:00
install-sh Refresh autotools generated files 2020-06-10 07:07:14 -07:00
Makefile.am Address array section accessor added 2020-12-22 14:10:16 +02:00
Makefile.in Address array section accessor added 2020-12-22 14:10:16 +02:00
missing Refresh autotools generated files 2020-06-10 07:07:14 -07:00
NEWS Initial 2012-02-18 12:01:36 +02:00
README Add a note about C-language wrapper 2020-10-17 10:14:11 +03:00
README.md Add a note about C-language wrapper 2020-10-17 10:14:11 +03:00
test-driver Substitute linked file with the actual one 2020-06-10 11:26:16 -07: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 provides a C-language interface wrapper.

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