Home | History | Annotate | only in /external/elfutils/src
Up to higher level directory
NameDateSize
ABOUT-NLS08-Oct-201574.7K
aclocal.m408-Oct-201545.2K
Android.mk08-Oct-2015638
AUTHORS08-Oct-201553
backends/08-Oct-2015
ChangeLog08-Oct-201513.2K
config/08-Oct-2015
config.h08-Oct-20153K
config.h.in08-Oct-20152.6K
config.status08-Oct-201541.4K
configure08-Oct-2015233.1K
configure.ac08-Oct-201511.1K
CONTRIBUTING08-Oct-20151.8K
COPYING08-Oct-201534.3K
COPYING-GPLV208-Oct-201517.7K
COPYING-LGPLV308-Oct-20157.5K
elfutils.spec08-Oct-201531.1K
GPG-KEY08-Oct-20151.9K
INSTALL08-Oct-201515.4K
lib/08-Oct-2015
libasm/08-Oct-2015
libcpu/08-Oct-2015
libdw/08-Oct-2015
libdwelf/08-Oct-2015
libdwfl/08-Oct-2015
libebl/08-Oct-2015
libelf/08-Oct-2015
m4/08-Oct-2015
Makefile08-Oct-201528.6K
Makefile.am08-Oct-20151.7K
Makefile.in08-Oct-201528.4K
NEWS08-Oct-201534.9K
NOTES08-Oct-20151.9K
po/08-Oct-2015
README08-Oct-20151K
src/08-Oct-2015
stamp-h108-Oct-201523
tests/08-Oct-2015
THANKS08-Oct-2015193
TODO08-Oct-20155.3K
version.h08-Oct-20151.2K

README

      1 Fundamental design decision:
      2 
      3 - the sizes of external and internal types are assumed to be the same.
      4   This leaves byte ordering aside.  While assuming this the code can be
      5   greatly simplified and speed increases.  Since no change violating this
      6   assumption is in sight this is believed to be a worthwhile optimization.
      7 
      8 - the ABI of the backend modules is not guaranteed.  Really, not guarantee
      9   whatsoever.  We are enforcing this in the code.  The modules and their
     10   users must match.  No third-party EBL module are supported or allowed.
     11   The only reason there are separate modules is to not have the code for
     12   all architectures in all the binaries.
     13 
     14 - although the public libraries (libasm, libdw) have a stable API and are
     15   backwards ABI compatible they, and the elfutils tools, do depend on each
     16   others internals, and on internals of libelf to provide their interfaces.
     17   So they should always be upgraded in lockstep when packaging the tools
     18   and libraries separately. For one example of how to do that, see the
     19   config/elfutils.spec.
     20