ELFIO - ELF (Executable and Linkable Format) reader and producer implemented as a header only C++ library
Go to file
Vincent Huang 6d713f4d0a Added iterator for segments and sections
segments and sections were already stored as std::vector<T>.
This change simply exposes the std::vector<T>::iterator functions.
2014-08-07 23:12:35 -04:00
cygwin Switch to cygport conf file for CygWin distribution 2014-02-26 17:39:33 +02:00
doc A minor change of the Web page 2013-05-17 12:24:11 +03:00
elf_examples Add a test that verifies ARM executable which was generated by CLang and LLVM 2014-02-27 19:42:57 +02:00
elfio Added iterator for segments and sections 2014-08-07 23:12:35 -04:00
ELFIOTest Add a test that verifies ARM executable which was generated by CLang and LLVM 2014-02-27 19:42:57 +02:00
examples Dump for section and segment data added 2014-02-26 17:35:20 +02:00
.gitignore Switch to cygport conf file for CygWin distribution 2014-02-26 17:39:33 +02:00
aclocal.m4 Release 2.2 2013-05-16 18:56:07 +03:00
AUTHORS Convert all files to UNIX EOL 2012-11-27 11:45:28 +02:00
ChangeLog Initial 2012-02-18 12:01:36 +02:00
configure Release 2.2 2013-05-16 18:56:07 +03:00
configure.ac Release 2.2 2013-05-16 18:56:07 +03:00
COPYING Convert all files to UNIX EOL 2012-11-27 11:45:28 +02:00
depcomp Adding new auto* scripts 2012-11-27 00:00:27 +02:00
ELFIO.sln Ticket #10: Fix section type SHT_NOBITS file_size calculation 2013-05-16 17:58:09 +03:00
INSTALL INSTALL description changed 2012-12-05 11:02:34 +02:00
install-sh Adding new auto* scripts 2012-11-27 00:00:27 +02:00
Makefile.am Dynamic section accessor is implemented 2013-01-13 04:29:43 +02:00
Makefile.in Release 2.2 2013-05-16 18:56:07 +03:00
missing Adding new auto* scripts 2012-11-27 00:00:27 +02:00
NEWS Initial 2012-02-18 12:01:36 +02:00
README - Documentation update 2012-12-05 20:01:31 +02:00

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
dependant on any other product or project. Adhering to ISO C++, it compiles on
a wide variety of architectures and compilers.