Home | History | Annotate | only in /external/elfutils
Up to higher level directory
NameDateSize
.gitignore05-Oct-20172.4K
ABOUT-NLS05-Oct-201774.7K
Android.bp05-Oct-2017262
AUTHORS05-Oct-201753
backends/05-Oct-2017
bionic-fixup/05-Oct-2017
ChangeLog05-Oct-201716.1K
CleanSpec.mk05-Oct-20172.9K
config/05-Oct-2017
config.h05-Oct-20173K
configure.ac05-Oct-201717.3K
CONTRIBUTING05-Oct-20171.8K
COPYING05-Oct-201734.3K
COPYING-GPLV205-Oct-201717.7K
COPYING-LGPLV305-Oct-20177.5K
doc/05-Oct-2017
GPG-KEY05-Oct-20171.9K
include/05-Oct-2017
lib/05-Oct-2017
libasm/05-Oct-2017
libcpu/05-Oct-2017
libdw/05-Oct-2017
libdwelf/05-Oct-2017
libdwfl/05-Oct-2017
libebl/05-Oct-2017
libelf/05-Oct-2017
m4/05-Oct-2017
Makefile.am05-Oct-20171.8K
MODULE_LICENSE_GPL05-Oct-20170
NEWS05-Oct-201736.7K
NOTES05-Oct-20171.9K
NOTICE05-Oct-201717.6K
po/05-Oct-2017
README05-Oct-20171K
src/05-Oct-2017
tests/05-Oct-2017
THANKS05-Oct-2017193
TODO05-Oct-20175.3K
version.h05-Oct-20171.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