source: general/prog/elfutils.xml@ d52c17f

systemd-13485
Last change on this file since d52c17f was d52c17f, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Update to elfutils-0.164
Update to Python-3.5.0

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@16667 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY elfutils-download-http
8 "https://fedorahosted.org/releases/e/l/elfutils/&elfutils-version;/elfutils-&elfutils-version;.tar.bz2">
9 <!ENTITY elfutils-download-ftp " ">
10 <!ENTITY elfutils-md5sum "2e4536c1c48034f188a80789a59114d8">
11 <!ENTITY elfutils-size "5.8 MB">
12 <!ENTITY elfutils-buildsize "103 MB (with tests)">
13 <!ENTITY elfutils-time "1.0 SBU (with tests)">
14]>
15
16<sect1 id="elfutils" xreflabel="elfutils-&elfutils-version;">
17 <?dbhtml filename="elfutils.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>elfutils-&elfutils-version;</title>
25
26 <indexterm zone="elfutils">
27 <primary sortas="a-elfutils">elfutils</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to elfutils</title>
32
33 <para>
34 The <application>elfutils</application> package contains set of utilities
35 and libraries for handling ELF (Executable and Linkable Format) files.
36 </para>
37
38 &lfs78_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&elfutils-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&elfutils-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &elfutils-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &elfutils-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &elfutils-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &elfutils-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <para condition="html" role="usernotes">
75 User Notes: <ulink url="&blfs-wiki;/elfutils"/>
76 </para>
77 </sect2>
78
79 <sect2 role="installation">
80 <title>Installation of elfutils</title>
81
82 <para>
83 Install <application>elfutils</application> by running the following
84 commands:
85 </para>
86
87<!-- don't disable static libs, disable-static switch doesn't work anyways -->
88<screen><userinput>./configure --prefix=/usr --program-prefix="eu-" &amp;&amp;
89make</userinput></screen>
90
91 <para>
92 To test the results, issue: <command>make check</command>.
93 </para>
94
95 <para>
96 Now, as the <systemitem class="username">root</systemitem> user:
97 </para>
98
99<screen role="root"><userinput>make install</userinput></screen>
100
101 </sect2>
102
103 <sect2 role="commands">
104 <title>Command Explanations</title>
105
106 <para>
107 <parameter>--program-prefix="eu-"</parameter>: This switch renames
108 installed programs to avoid conflict with
109 <application>Binutils</application> programs installed in LFS.
110 </para>
111
112 </sect2>
113
114 <sect2 role="content">
115 <title>Contents</title>
116
117 <segmentedlist>
118 <segtitle>Installed Programs</segtitle>
119 <segtitle>Installed Libraries</segtitle>
120 <segtitle>Installed Directories</segtitle>
121
122 <seglistitem>
123 <seg>
124 eu-addr2line,
125 eu-ar,
126 eu-elfcmp,
127 eu-elflint,
128 eu-findtextrel,
129 eu-ld,
130 eu-make-debug-archive,
131 eu-nm,
132 eu-objdump,
133 eu-ranlib,
134 eu-readelf,
135 eu-size,
136 eu-stack,
137 eu-strings,
138 eu-strip,
139 and eu-unstrip
140 </seg>
141 <seg>
142 libasm.{a,so},
143 libdw.{a,so},
144 libebl.a,
145 libelf.{a,so},
146 and some for different architectures under /usr/lib/elfutils
147 </seg>
148 <seg>
149 /usr/include/elfutils and
150 /usr/lib/elfutils
151 </seg>
152 </seglistitem>
153 </segmentedlist>
154
155 </sect2>
156
157</sect1>
Note: See TracBrowser for help on using the repository browser.