pkgsrc/devel/elftoolchain/PLIST
ryoon 22e5afe2db Update to 0.7.1
Changelog:
Release Notes for Elftoolchain Software Version 0.7.1
=====================================================

About The Project
-----------------

The `Elftoolchain project`_ develops BSD-licensed implementations of
essential compilation tools and libraries for handling ELF based program
objects.

About The Release
-----------------

This is the first release on the v0.7 "stable" code line.

Since the prior v0.6.1 release, we have added support for a few more
machine architectures, improved our support of the DWARF4 debug format,
and have added experimental support for the Microsoft (TM) Portable
Executable format.  A number of bugs have been fixed, and the project's
documentation has been improved.  An implementation of a link editor
**ld** is in progress.

Libraries and Utilities
~~~~~~~~~~~~~~~~~~~~~~~

This release comprises the following libraries and utilities.

  =================       ==========================================
  **Name**                **Description**
  =================       ==========================================
  **ar**                  Archive manager.
  **addr2line**           Debug tool.
  **brandelf**            Manage the ELF brand on executables.
  **c++filt**             Translate encoded symbols.
  **elfcopy**             Copy and translate between object formats.
  **elfdump**             Diagnostic tool.
  **findtextrel**         Find undesired text relocations.
  **libdwarf**            DWARF access library.
  **libelf**              ELF access library.
  **mcs**                 Manage comment sections.
  **nm**                  List symbols in an ELF object.
  **ranlib**              Add archive symbol tables to an archive.
  **readelf**             Display ELF information.
  **size**                List object sizes.
  **strings**             Extract printable strings.
  **strip**               Discard information from ELF objects.
  =================       ==========================================

This release also contains the following software that is under
development:

  =================       ==========================================
  **Name**                **Description**
  =================       ==========================================
  **ld**                  Program linker.
  **libpe**               PE (Portable Executable) access library.
  =================       ==========================================

Documentation
~~~~~~~~~~~~~

Each public API and invocable utility has a reference manual entry.
We currently offer 355 manual entries, documented in 197 manual pages.

Additionally, this release contains the following documentation:

  =================       ==========================================
  **Name**                **Description**
  =================       ==========================================
  libelf-by-example       A tutorial introduction to **libelf**.
  =================       ==========================================

Test Suites
~~~~~~~~~~~

The release contains the following test suites:

  =================       ==========================================
  **Name**                **Description**
  =================       ==========================================
  ar                      Test the **ar** utility.
  elfcopy                 Test the **elfcopy** utility.
  elfdump                 Test the **elfdump** utility.
  libdwarf                Test the **libdwarf** library.
  libelf                  Test the **libelf** library.
  libelftc                Test the **libelftc** support library.
  nm                      Test the **nm** utility.
  =================       ==========================================


System Requirements
-------------------

This software is designed to run on Unix(TM)-like operating systems
such as the BSD-family of operating systems and GNU/Linux.

This release has been built and tested on the following operating
systems:

  ====================  ===========  ===========================
  **Operating System**  **Version**  **Supported Architectures**
  --------------------  -----------  ---------------------------
  FreeBSD_              10.2         amd64 & i386
  NetBSD_               7.0          i386
  Ubuntu_ GNU/Linux     14.04LTS     x86_64
  ====================  ===========  ===========================


Installation and Upgrades
=========================

Installation
------------

Instructions for building and installing this software from source are
described in the file "INSTALL".

Upgrading
---------

* Consumers of the libdwarf API should note that the `Dwarf_Off` type
  has changed to an unsigned type, so as to be compatible with other
  open-source libdwarf implementations.
* Three functions in the libdwarf API have been deprecated and two
  extension APIs have been added.

Release Information
===================

Changes in this release
-----------------------

Significant changes include:

* **addr2line**

  - Support the ``DW_AT_ranges`` debug attribute.
  - Improve DWARF4 compatibility.
  - **addr2line** supports new options ``-a``, ``-i``, ``-p``.
  - Compilation units lacking debug information are handled more robustly.
  - Memory leaks were fixed.

* **ar/ranlib**

  - The **ranlib** utility is now documented in its own manual page.
  - The handling of corrupt archives has been improved.
  - **ar** now supports a ``-U`` option that disables its
    deterministic (``-D``) mode.
  - **ar** no longer allows extraction of archive entries whose
    pathnames contain ``..``, or whose target directory would be
    altered by a symbolic link.

* **brandelf**

  - The documentation for **brandelf** has been improved.

* **elfcopy/strip/mcs**

  - **strip** no longer strips local debugging symbols when the ``-x``
    option is specified.
  - Compatibility with GNU binutils has been improved.
  - The **elfcopy** and **strip** utilities will now preserve hard
    links when modifying an object file.
  - Support for new functionality controlled by options
    ``--localize-hidden``, ``--extract-dwo`` and ``--strip-dwo`` has
    been added.
  - Bugs in the behavior of the ``-N`` and ``-X`` options were fixed.
  - Nameless global symbols are now handled correctly.
  - ``SHT_GROUP`` handling has been fixed in **elfcopy** and
    **strip**.
  - **elfcopy** now supports the conversion of ELF objects to PE images.

* **elfdump**

  - **elfdump** can now dump multiple GOT sections.
  - **elfdump** now understands the ``EM_AARCH64``, ``EM_IAMCU``,
    ``EM_PPC64``, and ``EM_RISCV`` machine types and the
    ``STT_SPARC_REGISTER`` section type.
  - Symbols with ``STB_GNU_UNIQUE`` are now supported.

* **findtextrel**

  - The manual pages were improved.

* **ld**

  - This utility is new in this release.  This utility is currently under
    development, and should be considered unstable.

* **libdwarf**
  - The line number program generated by **libdwarf** has been improved.
  - Support for the DWARF4 ``.debug_types`` section was added.
  - Parsing of DWARF4 line sections was fixed.
  - New APIs ``dwarf_attroffset()``,
    ``dwarf_get_cu_die_offset_given_cu_header_offset_b()``,
    ``dwarf_get_die_infotypes_flag()``,
    ``dwarf_get_section_max_offsets()``,
    ``dwarf_get_section_max_offsets_b()``, ``dwarf_highpc_b()``,
    ``dwarf_loclist_from_expr_b()``, ``dwarf_next_types_section()``,
    ``dwarf_offdie_b()``, and ``dwarf_siblingof_b()`` have been added.
    Of these, ``dwarf_attroffset()`` and ``dwarf_next_types_section()``
    are extensions to the SGI libdwarf API.
  - Support for operators ``DW_OP_GNU_addr_index``,
    ``DW_OP_GNU_const_index``, ``DW_OP_GNU_const_type``,
    ``DW_OP_GNU_convert``, ``DW_OP_GNU_deref_type``,
    ``DW_OP_GNU_encoded_addr``, ``DW_OP_GNU_entry_value``,
    ``DW_OP_GNU_implicit_pointer``, ``DW_OP_GNU_parameter_ref``,
    ``DW_OP_GNU_regval_type``, ``DW_OP_GNU_reinterpret``,
    ``DW_OP_GNU_uninit`` and ``DW_OP_push_object_address`` have been
    added.
  - APIs ``dwarf_get_cu_die_offset_given_cu_header_offset()``,
    ``dwarf_offdie()``, ``dwarf_siblingof()`` have been deprecated.
  - **libdwarf** now supports relocation for the ``aarch64``
    architecture.
  - **libdwarf** now handles architectures that use ".rel" relocations
    for debug data correctly.
  - The ``EM_IAMCU`` architecture is now recognized.
  - Documentation has been improved, memory leaks and other bugs have
    been fixed.

* **libelf**

  - Reference documentation has been improved.
  - Support building on the AARCH64 architecture has added.
  - Bug fixes have been applied.

* **libelf-by-example**

  - No changes since the prior release.

* **libelftc**

  - Support for the Portable Executable format has been added.
  - Overview documentation for this support library has been added.
  - New APIs ``elftc_string_table_from_section()``.
    ``elftc_string_table_image()``, ``elftc_string_table_insert()``,
    ``elftc_string_table_lookup()``, ``elftc_string_table_remove()``
    and ``elftc_string_table_to_string()`` have been added.
  - The demangling support functions now support IEEE floating point
    types, TLS special names and various GNU extensions.
  - Other bugs have fixed.

* **libpe**

  - This library is new in this release.  This library is currently
    under development, and should be considered unstable.

* **nm**

  - A new alias ``--extern-only`` for option ``-g`` is now supported.
  - Bugs have been fixed.

* **readelf**

  - The handling of objects with missing symbol names was improved.
  - **readelf** now supports dumping ``.debug_types`` sections.
  - The ``DW_AT_language``, ``DW_FORM_exprloc``,
    ``DW_FORM_flag_present``, ``DW_FORM_ref_sig8`` and
    ``DW_FORM_sec_offset`` types are now supported.
  - GNU DWARF operator extensions are now recognized by **readelf**.
  - **readelf** can now display architecture specific register names on
    some architectures.
  - **readelf** now handles AArch64 types and relocations and
    recognizes the ``RISC-V`` and ``IAMCU`` architectures.
  - Support has been added for printing binary notes for FreeBSD, Xen
    and Linux, and for printing core notes for FreeBSD and Linux.
  - Support for dumping symbols with the ``STB_GNU_UNIQUE`` binding
    has been added.
  - Support for dumping symbols with the ``STT_SPARC_REGISTER``
    register type has been added.

* **size**

  - The manual page for **size** has been improved.

* **strings**

  - The manual page for **strings** has been improved.

Outstanding Issues
------------------

There were no outstanding issues at the time of the release.

Known Limitations
-----------------

This release has the following limitations:

:Test coverage:
    Our test suites are being developed; test coverage is still
    partial.
:Performance and Memory Use:
    Our tools have not been fully analyzed for their memory use or for
    their performance characteristics.

Test Statistics
---------------

The test summary for this release is presented below:

 ========= ========== =============== ================ ===================
 **Suite** **Tests**  **FreeBSD**     **NetBSD**       **Ubuntu 10.04LTS**
           (32&64bit) (i386 & amd64)  (i386)           (x86_64)
 ========= ========== =============== ================ ===================
 ar        235 & 230  P:235 & 230     P:235            P:230
 elfcopy   160        P:160           P:160            P:160
 elfdump   155        P:155           P:155            P:155
 libdwarf  153        P:153           P:153            P:153
 libelf    1030       P:1026, U:4     P:1026, U:4      P:1026, U:4
 libelftc  16         P:16            P:16             P:16
 nm        183        P:183           P:183            P:183
 ========= ========== =============== ================ ===================

Key:

  :P:
      Test successes.
  :F:
      Test failures.
  :U:
      Unresolved tests.

Notes
~~~~~

More Information
================

The project's website is at http://elftoolchain.sourceforge.net/.

Developer Community
-------------------

The project's developers may be contacted using the mailing list:
``<elftoolchain-developers@lists.sourceforge.net>``.

Reporting Bugs
--------------

Please use our `bug tracker`_ for viewing existing bug reports and
for submitting new bug reports.

Copyright and License
=====================

This software is copyright its authors, and is distributed under the
`BSD License`_.

.. _BSD License: http://www.opensource.org/licenses/bsd-license.php
.. _`bug tracker`: https://sourceforge.net/p/elftoolchain/tickets/
.. _Elftoolchain project: http://elftoolchain.sourceforge.net/
.. _FreeBSD: http://www.freebsd.org/
.. _NetBSD:  http://www.netbsd.org/
.. _Ubuntu:  http://www.ubuntu.com/

.. Local Variables:
.. mode: rst
.. End:
2018-10-01 12:36:35 +00:00

408 lines
11 KiB
Text

@comment $NetBSD: PLIST,v 1.3 2018/10/01 12:36:35 ryoon Exp $
bin/addr2line
bin/ar
bin/brandelf
bin/c++filt
bin/elfcopy
bin/elfdump
bin/findtextrel
bin/ld
bin/mcs
bin/nm
bin/ranlib
bin/readelf
bin/size
bin/strings
bin/strip
include/dwarf.h
include/elfdefinitions.h
include/gelf.h
include/libdwarf.h
include/libelf.h
include/libelftc.h
include/libpe.h
include/pe.h
lib/libdwarf.a
lib/libdwarf.so
lib/libdwarf.so.3
lib/libdwarf.so.3.0
lib/libdwarf_p.a
lib/libdwarf_pic.a
lib/libelf.a
lib/libelf.so
lib/libelf.so.1
lib/libelf.so.1.0
lib/libelf_p.a
lib/libelf_pic.a
lib/libelftc.a
lib/libelftc.so
lib/libelftc.so.1
lib/libelftc.so.1.0
lib/libelftc_p.a
lib/libelftc_pic.a
lib/libpe.a
lib/libpe.so
lib/libpe.so.1
lib/libpe_p.a
lib/libpe_pic.a
man/man1/addr2line.1
man/man1/ar.1
man/man1/brandelf.1
man/man1/c++filt.1
man/man1/elfcopy.1
man/man1/elfdump.1
man/man1/findtextrel.1
man/man1/ld.1
man/man1/mcs.1
man/man1/nm.1
man/man1/ranlib.1
man/man1/readelf.1
man/man1/size.1
man/man1/strings.1
man/man1/strip.1
man/man3/dwarf.3
man/man3/dwarf_add_AT_comp_dir.3
man/man3/dwarf_add_AT_const_value_signedint.3
man/man3/dwarf_add_AT_const_value_string.3
man/man3/dwarf_add_AT_const_value_unsignedint.3
man/man3/dwarf_add_AT_dataref.3
man/man3/dwarf_add_AT_flag.3
man/man3/dwarf_add_AT_location_expr.3
man/man3/dwarf_add_AT_name.3
man/man3/dwarf_add_AT_producer.3
man/man3/dwarf_add_AT_ref_address.3
man/man3/dwarf_add_AT_reference.3
man/man3/dwarf_add_AT_signed_const.3
man/man3/dwarf_add_AT_string.3
man/man3/dwarf_add_AT_targ_address.3
man/man3/dwarf_add_AT_targ_address_b.3
man/man3/dwarf_add_AT_unsigned_const.3
man/man3/dwarf_add_arange.3
man/man3/dwarf_add_arange_b.3
man/man3/dwarf_add_die_to_debug.3
man/man3/dwarf_add_directory_decl.3
man/man3/dwarf_add_expr_addr.3
man/man3/dwarf_add_expr_addr_b.3
man/man3/dwarf_add_expr_gen.3
man/man3/dwarf_add_fde_inst.3
man/man3/dwarf_add_file_decl.3
man/man3/dwarf_add_frame_cie.3
man/man3/dwarf_add_frame_fde.3
man/man3/dwarf_add_frame_fde_b.3
man/man3/dwarf_add_funcname.3
man/man3/dwarf_add_line_entry.3
man/man3/dwarf_add_pubname.3
man/man3/dwarf_add_typename.3
man/man3/dwarf_add_varname.3
man/man3/dwarf_add_weakname.3
man/man3/dwarf_arrayorder.3
man/man3/dwarf_attr.3
man/man3/dwarf_attrlist.3
man/man3/dwarf_attroffset.3
man/man3/dwarf_attrval_flag.3
man/man3/dwarf_attrval_signed.3
man/man3/dwarf_attrval_string.3
man/man3/dwarf_attrval_unsigned.3
man/man3/dwarf_bitoffset.3
man/man3/dwarf_bitsize.3
man/man3/dwarf_bytesize.3
man/man3/dwarf_child.3
man/man3/dwarf_dealloc.3
man/man3/dwarf_def_macro.3
man/man3/dwarf_die_CU_offset.3
man/man3/dwarf_die_CU_offset_range.3
man/man3/dwarf_die_abbrev_code.3
man/man3/dwarf_die_link.3
man/man3/dwarf_diename.3
man/man3/dwarf_dieoffset.3
man/man3/dwarf_elf_init.3
man/man3/dwarf_end_macro_file.3
man/man3/dwarf_errmsg.3
man/man3/dwarf_errno.3
man/man3/dwarf_expand_frame_instructions.3
man/man3/dwarf_expr_current_offset.3
man/man3/dwarf_expr_into_block.3
man/man3/dwarf_fde_cfa_offset.3
man/man3/dwarf_fde_cie_list_dealloc.3
man/man3/dwarf_find_macro_value_start.3
man/man3/dwarf_finish.3
man/man3/dwarf_formaddr.3
man/man3/dwarf_formblock.3
man/man3/dwarf_formexprloc.3
man/man3/dwarf_formflag.3
man/man3/dwarf_formref.3
man/man3/dwarf_formsdata.3
man/man3/dwarf_formsig8.3
man/man3/dwarf_formstring.3
man/man3/dwarf_formudata.3
man/man3/dwarf_func_cu_offset.3
man/man3/dwarf_func_die_offset.3
man/man3/dwarf_func_name_offsets.3
man/man3/dwarf_funcname.3
man/man3/dwarf_funcs_dealloc.3
man/man3/dwarf_get_ACCESS_name.3
man/man3/dwarf_get_ATE_name.3
man/man3/dwarf_get_AT_name.3
man/man3/dwarf_get_CC_name.3
man/man3/dwarf_get_CFA_name.3
man/man3/dwarf_get_CHILDREN_name.3
man/man3/dwarf_get_DSC_name.3
man/man3/dwarf_get_DS_name.3
man/man3/dwarf_get_EH_name.3
man/man3/dwarf_get_END_name.3
man/man3/dwarf_get_FORM_name.3
man/man3/dwarf_get_ID_name.3
man/man3/dwarf_get_INL_name.3
man/man3/dwarf_get_LANG_name.3
man/man3/dwarf_get_LNE_name.3
man/man3/dwarf_get_LNS_name.3
man/man3/dwarf_get_MACINFO_name.3
man/man3/dwarf_get_OP_name.3
man/man3/dwarf_get_ORD_name.3
man/man3/dwarf_get_TAG_name.3
man/man3/dwarf_get_VIRTUALITY_name.3
man/man3/dwarf_get_VIS_name.3
man/man3/dwarf_get_abbrev.3
man/man3/dwarf_get_abbrev_children_flag.3
man/man3/dwarf_get_abbrev_code.3
man/man3/dwarf_get_abbrev_entry.3
man/man3/dwarf_get_abbrev_tag.3
man/man3/dwarf_get_address_size.3
man/man3/dwarf_get_arange.3
man/man3/dwarf_get_arange_cu_header_offset.3
man/man3/dwarf_get_arange_info.3
man/man3/dwarf_get_aranges.3
man/man3/dwarf_get_cie_index.3
man/man3/dwarf_get_cie_info.3
man/man3/dwarf_get_cie_of_fde.3
man/man3/dwarf_get_cu_die_offset.3
man/man3/dwarf_get_cu_die_offset_given_cu_header_offset.3
man/man3/dwarf_get_cu_die_offset_given_cu_header_offset_b.3
man/man3/dwarf_get_die_infotypes_flag.3
man/man3/dwarf_get_elf.3
man/man3/dwarf_get_fde_at_pc.3
man/man3/dwarf_get_fde_info_for_all_regs.3
man/man3/dwarf_get_fde_info_for_all_regs3.3
man/man3/dwarf_get_fde_info_for_cfa_reg3.3
man/man3/dwarf_get_fde_info_for_reg.3
man/man3/dwarf_get_fde_info_for_reg3.3
man/man3/dwarf_get_fde_instr_bytes.3
man/man3/dwarf_get_fde_list.3
man/man3/dwarf_get_fde_list_eh.3
man/man3/dwarf_get_fde_n.3
man/man3/dwarf_get_fde_range.3
man/man3/dwarf_get_form_class.3
man/man3/dwarf_get_funcs.3
man/man3/dwarf_get_globals.3
man/man3/dwarf_get_loclist_entry.3
man/man3/dwarf_get_macro_details.3
man/man3/dwarf_get_pubtypes.3
man/man3/dwarf_get_ranges.3
man/man3/dwarf_get_ranges_a.3
man/man3/dwarf_get_relocation_info.3
man/man3/dwarf_get_relocation_info_count.3
man/man3/dwarf_get_section_bytes.3
man/man3/dwarf_get_section_max_offsets.3
man/man3/dwarf_get_section_max_offsets_b.3
man/man3/dwarf_get_str.3
man/man3/dwarf_get_types.3
man/man3/dwarf_get_vars.3
man/man3/dwarf_get_weaks.3
man/man3/dwarf_global_cu_offset.3
man/man3/dwarf_global_die_offset.3
man/man3/dwarf_global_formref.3
man/man3/dwarf_global_name_offsets.3
man/man3/dwarf_globals_dealloc.3
man/man3/dwarf_globname.3
man/man3/dwarf_hasattr.3
man/man3/dwarf_hasform.3
man/man3/dwarf_highpc.3
man/man3/dwarf_highpc_b.3
man/man3/dwarf_init.3
man/man3/dwarf_line_srcfileno.3
man/man3/dwarf_lineaddr.3
man/man3/dwarf_linebeginstatement.3
man/man3/dwarf_lineblock.3
man/man3/dwarf_lineendsequence.3
man/man3/dwarf_lineno.3
man/man3/dwarf_lineoff.3
man/man3/dwarf_linesrc.3
man/man3/dwarf_lne_end_sequence.3
man/man3/dwarf_lne_set_address.3
man/man3/dwarf_loclist.3
man/man3/dwarf_loclist_from_expr.3
man/man3/dwarf_loclist_from_expr_a.3
man/man3/dwarf_loclist_from_expr_b.3
man/man3/dwarf_loclist_n.3
man/man3/dwarf_lowpc.3
man/man3/dwarf_new_die.3
man/man3/dwarf_new_expr.3
man/man3/dwarf_new_fde.3
man/man3/dwarf_next_cu_header.3
man/man3/dwarf_next_cu_header_b.3
man/man3/dwarf_next_cu_header_c.3
man/man3/dwarf_next_types_section.3
man/man3/dwarf_object_finish.3
man/man3/dwarf_object_init.3
man/man3/dwarf_offdie.3
man/man3/dwarf_offdie_b.3
man/man3/dwarf_producer_init.3
man/man3/dwarf_producer_init_b.3
man/man3/dwarf_producer_set_isa.3
man/man3/dwarf_pubtype_cu_offset.3
man/man3/dwarf_pubtype_die_offset.3
man/man3/dwarf_pubtype_name_offsets.3
man/man3/dwarf_pubtypename.3
man/man3/dwarf_pubtypes_dealloc.3
man/man3/dwarf_ranges_dealloc.3
man/man3/dwarf_reset_section_bytes.3
man/man3/dwarf_set_frame_cfa_value.3
man/man3/dwarf_set_frame_rule_initial_value.3
man/man3/dwarf_set_frame_rule_table_size.3
man/man3/dwarf_set_frame_same_value.3
man/man3/dwarf_set_frame_undefined_value.3
man/man3/dwarf_set_reloc_application.3
man/man3/dwarf_seterrarg.3
man/man3/dwarf_seterrhand.3
man/man3/dwarf_siblingof.3
man/man3/dwarf_siblingof_b.3
man/man3/dwarf_srcfiles.3
man/man3/dwarf_srclang.3
man/man3/dwarf_srclines.3
man/man3/dwarf_srclines_dealloc.3
man/man3/dwarf_start_macro_file.3
man/man3/dwarf_tag.3
man/man3/dwarf_transform_to_disk_form.3
man/man3/dwarf_type_cu_offset.3
man/man3/dwarf_type_die_offset.3
man/man3/dwarf_type_name_offsets.3
man/man3/dwarf_typename.3
man/man3/dwarf_types_dealloc.3
man/man3/dwarf_undef_macro.3
man/man3/dwarf_var_cu_offset.3
man/man3/dwarf_var_die_offset.3
man/man3/dwarf_var_name_offsets.3
man/man3/dwarf_varname.3
man/man3/dwarf_vars_dealloc.3
man/man3/dwarf_vendor_ext.3
man/man3/dwarf_weak_cu_offset.3
man/man3/dwarf_weak_die_offset.3
man/man3/dwarf_weak_name_offsets.3
man/man3/dwarf_weakname.3
man/man3/dwarf_weaks_dealloc.3
man/man3/dwarf_whatattr.3
man/man3/dwarf_whatform.3
man/man3/dwarf_whatform_direct.3
man/man3/elf.3
man/man3/elf32_checksum.3
man/man3/elf32_fsize.3
man/man3/elf32_getehdr.3
man/man3/elf32_getphdr.3
man/man3/elf32_getshdr.3
man/man3/elf32_newehdr.3
man/man3/elf32_newphdr.3
man/man3/elf32_xlatetof.3
man/man3/elf32_xlatetom.3
man/man3/elf64_checksum.3
man/man3/elf64_fsize.3
man/man3/elf64_getehdr.3
man/man3/elf64_getphdr.3
man/man3/elf64_getshdr.3
man/man3/elf64_newehdr.3
man/man3/elf64_newphdr.3
man/man3/elf64_xlatetof.3
man/man3/elf64_xlatetom.3
man/man3/elf_begin.3
man/man3/elf_cntl.3
man/man3/elf_end.3
man/man3/elf_errmsg.3
man/man3/elf_errno.3
man/man3/elf_fill.3
man/man3/elf_flagarhdr.3
man/man3/elf_flagdata.3
man/man3/elf_flagehdr.3
man/man3/elf_flagelf.3
man/man3/elf_flagphdr.3
man/man3/elf_flagscn.3
man/man3/elf_flagshdr.3
man/man3/elf_getarhdr.3
man/man3/elf_getarsym.3
man/man3/elf_getbase.3
man/man3/elf_getdata.3
man/man3/elf_getident.3
man/man3/elf_getphdrnum.3
man/man3/elf_getphnum.3
man/man3/elf_getscn.3
man/man3/elf_getshdrnum.3
man/man3/elf_getshdrstrndx.3
man/man3/elf_getshnum.3
man/man3/elf_getshstrndx.3
man/man3/elf_hash.3
man/man3/elf_kind.3
man/man3/elf_memory.3
man/man3/elf_ndxscn.3
man/man3/elf_newdata.3
man/man3/elf_newscn.3
man/man3/elf_next.3
man/man3/elf_nextscn.3
man/man3/elf_open.3
man/man3/elf_openmemory.3
man/man3/elf_rand.3
man/man3/elf_rawdata.3
man/man3/elf_rawfile.3
man/man3/elf_setshstrndx.3
man/man3/elf_strptr.3
man/man3/elf_update.3
man/man3/elf_version.3
man/man3/elftc.3
man/man3/elftc_bfd_find_target.3
man/man3/elftc_bfd_target_byteorder.3
man/man3/elftc_bfd_target_class.3
man/man3/elftc_bfd_target_flavor.3
man/man3/elftc_copyfile.3
man/man3/elftc_demangle.3
man/man3/elftc_set_timestamps.3
man/man3/elftc_string_table_create.3
man/man3/elftc_string_table_destroy.3
man/man3/elftc_string_table_from_section.3
man/man3/elftc_string_table_image.3
man/man3/elftc_string_table_insert.3
man/man3/elftc_string_table_lookup.3
man/man3/elftc_version.3
man/man3/gelf.3
man/man3/gelf_checksum.3
man/man3/gelf_fsize.3
man/man3/gelf_getcap.3
man/man3/gelf_getclass.3
man/man3/gelf_getdyn.3
man/man3/gelf_getehdr.3
man/man3/gelf_getmove.3
man/man3/gelf_getphdr.3
man/man3/gelf_getrel.3
man/man3/gelf_getrela.3
man/man3/gelf_getshdr.3
man/man3/gelf_getsym.3
man/man3/gelf_getsyminfo.3
man/man3/gelf_getsymshndx.3
man/man3/gelf_newehdr.3
man/man3/gelf_newphdr.3
man/man3/gelf_update_cap.3
man/man3/gelf_update_dyn.3
man/man3/gelf_update_ehdr.3
man/man3/gelf_update_move.3
man/man3/gelf_update_phdr.3
man/man3/gelf_update_rel.3
man/man3/gelf_update_rela.3
man/man3/gelf_update_shdr.3
man/man3/gelf_update_sym.3
man/man3/gelf_update_syminfo.3
man/man3/gelf_update_symshndx.3
man/man3/gelf_xlatetof.3
man/man3/gelf_xlatetom.3
man/man5/ar.5
@pkgdir man/html5
@pkgdir man/html3
@pkgdir man/html1
@pkgdir man/cat5
@pkgdir man/cat3
@pkgdir man/cat1