ELFIO - ELF (Executable and Linkable Format) reader and producer implemented as a header only C++ library
Go to file
Mario Werner c743d0bf74 separated layout generation and saving
Many example elfs (hello_32, hello_64, asm ...) require that the
first section directly follows the program header table. The
section header is then placed between segments or at the end.

This change prepares the late placement of section header table.
2014-11-14 13:06:39 +01:00
cygwin Release 2.3 2014-11-08 19:07:46 +02:00
doc Documentation update - new functions are described 2014-08-09 11:22:36 +03:00
elf_examples changed order in which the sections are emitted 2014-11-14 10:37:50 +01:00
elfio separated layout generation and saving 2014-11-14 13:06:39 +01:00
ELFIOTest rewrote the segment save logic to not only care about alignment 2014-11-14 08:27:36 +01:00
examples Release 2.3 2014-11-08 19:07:46 +02:00
.gitignore ignored the generated elf files 2014-11-13 18:20:27 +01:00
aclocal.m4 Release 2.3 2014-11-08 19:07:46 +02:00
AUTHORS
ChangeLog
configure Release 2.3 2014-11-08 19:07:46 +02:00
configure.ac Release 2.3 2014-11-08 19:07:46 +02:00
COPYING
depcomp
ELFIO.sln Ticket #10: Fix section type SHT_NOBITS file_size calculation 2013-05-16 17:58:09 +03:00
INSTALL
install-sh
Makefile.am Dynamic section accessor is implemented 2013-01-13 04:29:43 +02:00
Makefile.in Release 2.3 2014-11-08 19:07:46 +02:00
missing
NEWS
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.