Home | History | Annotate | only in /external/elfutils
Up to higher level directory
NameDateSize
ABOUT-NLS21-Aug-201874.7K
Android.bp21-Aug-2018290
AUTHORS21-Aug-201853
backends/21-Aug-2018
bionic-fixup/21-Aug-2018
ChangeLog21-Aug-201816.1K
CleanSpec.mk21-Aug-20182.9K
config/21-Aug-2018
config.h21-Aug-20183K
configure.ac21-Aug-201817.3K
CONTRIBUTING21-Aug-20181.8K
COPYING21-Aug-201834.3K
COPYING-GPLV221-Aug-201817.7K
COPYING-LGPLV321-Aug-20187.5K
doc/21-Aug-2018
GPG-KEY21-Aug-20181.9K
include/21-Aug-2018
lib/21-Aug-2018
libasm/21-Aug-2018
libcpu/21-Aug-2018
libdw/21-Aug-2018
libdwelf/21-Aug-2018
libdwfl/21-Aug-2018
libebl/21-Aug-2018
libelf/21-Aug-2018
m4/21-Aug-2018
Makefile.am21-Aug-20181.8K
MODULE_LICENSE_GPL21-Aug-20180
NEWS21-Aug-201836.7K
NOTES21-Aug-20181.9K
NOTICE21-Aug-201817.6K
po/21-Aug-2018
README21-Aug-20181K
src/21-Aug-2018
tests/21-Aug-2018
THANKS21-Aug-2018193
TODO21-Aug-20185.3K
version.h21-Aug-20181.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, no 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