]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - README.rst
Import ELF Tool Chain snapshot at r3668
[FreeBSD/FreeBSD.git] / README.rst
1 The Elftoolchain Project
2 ========================
3
4 .. contents:: Table of Contents
5
6 Description
7 -----------
8
9 This software implements essential compilation tools and libraries for:
10
11 - managing program objects conforming to the ELF_ object format, and
12 - for managing DWARF_ debugging information in ELF objects.
13
14 The project currently implements the following utilities and
15 libraries:
16
17 =========== ============================================
18 Name        Description
19 =========== ============================================
20 ar          Archive manager.
21 addr2line   Debug tool.
22 brandelf    Manage the ELF brand on executables.
23 c++filt     Translate encoded symbols.
24 elfcopy     Copy and translate between object formats.
25 elfdump     Diagnostic tool.
26 findtextrel Find undesired text relocations.
27 libdwarf    DWARF access library.
28 libelf      ELF access library.
29 mcs         Manage comment sections.
30 nm          List symbols in an ELF object.
31 ranlib      Add archive symbol tables to an archive.
32 readelf     Display ELF information.
33 size        List object sizes.
34 strings     Extract printable strings.
35 strip       Discard information from ELF objects.
36 =========== ============================================
37
38 .. _ELF: http://en.wikipedia.org/wiki/Executable_and_Linkable_Format
39 .. _DWARF: http://www.dwarfstd.org/
40
41
42 Project Documentation
43 ---------------------
44
45 - Release notes for released versions of this software are present in
46   the file ``RELEASE-NOTES`` in the current directory.
47 - The file ``INSTALL`` in the current directory contains instructions
48   on building and installing this software.
49 - Reference documentation in the form of manual pages is provided for
50   the utilities and libraries developed by the project.
51 - Additional tutorial documentation is present in the
52   ``documentation`` directory.
53
54
55 Tracking Ongoing Development
56 ----------------------------
57
58 The project uses subversion_ for its version control system.
59
60 .. _subversion: https://subversion.apache.org/
61
62 The subversion branch for the current set of sources may be accessed
63 at the following URL::
64
65     https://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain/trunk
66
67 The project's source tree may be checked out from its repository by
68 using the ``svn checkout`` command::
69
70     % svn checkout https://elftoolchain.svn.sourceforge.net/svnroot/elftoolchain/trunk
71
72 Checked-out sources may be kept upto-date by running ``svn update``
73 inside the source directory::
74
75     % svn update
76
77
78 Instructions on building and installing the software are given in the
79 file ``INSTALL`` in the current directory.
80
81 Downloading Released Software
82 -----------------------------
83
84 Released versions of the project's software may also be downloaded
85 from SourceForge's `file release system`_.
86
87 .. _file release system: http://sourceforge.net/projects/elftoolchain/files/
88
89 Copyright and License
90 ---------------------
91
92 This code is copyright its authors, and is distributed under the `BSD
93 License`_.
94
95 .. _BSD License: http://www.opensource.org/licenses/bsd-license.php
96
97
98 Developer Community
99 -------------------
100
101 The project's developers may be contacted using the mailing list:
102 ``<elftoolchain-developers@lists.sourceforge.net>``.
103
104
105 Reporting Bugs
106 --------------
107
108 Please use our `Trac instance`_ for viewing existing bug reports and
109 for submitting new bug reports.
110
111 .. _`Trac instance`: http://sourceforge.net/apps/trac/elftoolchain/report
112
113
114 Additional Information
115 ----------------------
116
117 Additional information about the project may be found on the `project
118 website`_.
119
120 .. _project website:  http://elftoolchain.sourceforge.net/
121
122 .. $Id: README.rst 3656 2018-12-26 09:46:24Z jkoshy $
123
124 .. Local Variables:
125 .. mode: rst
126 .. End: