Home | History | Annotate | only in /external/elfutils
Up to higher level directory
NameDateSize
.gitignore24-Aug-20162.4K
ABOUT-NLS24-Aug-201674.7K
Android.mk24-Aug-2016638
AUTHORS24-Aug-201653
backends/24-Aug-2016
bionic-fixup/24-Aug-2016
ChangeLog24-Aug-201616.1K
CleanSpec.mk24-Aug-20162.9K
config/24-Aug-2016
config.h24-Aug-20163K
configure.ac24-Aug-201617.3K
CONTRIBUTING24-Aug-20161.8K
COPYING24-Aug-201634.3K
COPYING-GPLV224-Aug-201617.7K
COPYING-LGPLV324-Aug-20167.5K
doc/24-Aug-2016
GPG-KEY24-Aug-20161.9K
include/24-Aug-2016
lib/24-Aug-2016
libasm/24-Aug-2016
libcpu/24-Aug-2016
libdw/24-Aug-2016
libdwelf/24-Aug-2016
libdwfl/24-Aug-2016
libebl/24-Aug-2016
libelf/24-Aug-2016
m4/24-Aug-2016
Makefile.am24-Aug-20161.8K
MODULE_LICENSE_GPL24-Aug-20160
NEWS24-Aug-201636.7K
NOTES24-Aug-20161.9K
NOTICE24-Aug-201617.6K
po/24-Aug-2016
README24-Aug-20161K
src/24-Aug-2016
tests/24-Aug-2016
THANKS24-Aug-2016193
TODO24-Aug-20165.3K
version.h24-Aug-20161.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