source: BOOK/cross-tools/common/binutils.xml@ ecd4fe1c

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since ecd4fe1c was ea2ed58, checked in by Joe Ciccone <jciccone@…>, 18 years ago

Updated Date.
Corrected the relative path for libstd*so* in "Creating Essential Symlinks".
Changed --with-lib-path in the cross-tools binutils from /tools/lib to ${CLFS}/tools/lib. It appears to be independent of sysroot.

  • Property mode set to 100644
File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-cross-tools-binutils" role="wrap">
9 <?dbhtml filename="binutils.html"?>
10
11 <title>Cross Binutils-&binutils-version;</title>
12
13 <indexterm zone="ch-cross-tools-binutils">
14 <primary sortas="a-Binutils">Binutils</primary>
15 <secondary>cross tools</secondary>
16 </indexterm>
17
18 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
19 href="../../final-system/common/binutils.xml"
20 xpointer="xpointer(//*[@role='package'])"/>
21
22 <sect2 role="installation">
23 <title>Installation of Cross Binutils</title>
24
25 <para os="da">It is important that Binutils be the first package compiled
26 because both Glibc and GCC perform various tests on the available
27 linker and assembler to determine which of their own features to
28 enable.</para>
29
30 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
31 href="../../final-system/common/binutils.xml"
32 xpointer="xpointer(//*[@os='p1'])"/>
33
34 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
35 href="../../final-system/common/binutils.xml"
36 xpointer="xpointer(//*[@os='p2'])"/>
37
38 <para os="ba">To make sure that the proper syntax is used for a couple of
39 tools, apply the following patch:</para>
40
41<screen os="bb"><userinput>patch -Np1 -i ../&binutils-posix-patch;</userinput></screen>
42
43 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
44 href="../../final-system/common/binutils.xml"
45 xpointer="xpointer(//*[@os='g'])"/>
46
47 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
48 href="../../final-system/common/binutils.xml"
49 xpointer="xpointer(//*[@os='h'])"/>
50
51 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
52 href="../../final-system/common/binutils.xml"
53 xpointer="xpointer(//*[@os='i'])"/>
54
55<screen os="bc"><userinput>../binutils-&binutils-version;/configure \
56 --prefix=${CLFS}/cross-tools --with-sysroot=${CLFS} --host=${CLFS_HOST} \
57 --target=${CLFS_TARGET} --disable-nls --enable-shared \
58 --disable-multilib --with-lib-path=${CLFS}/tools/lib</userinput></screen>
59
60 <variablelist os="bd">
61 <title>The meaning of the configure options:</title>
62
63 <varlistentry os="bd1">
64 <term><parameter>--prefix=${CLFS}/cross-tools</parameter></term>
65 <listitem>
66 <para>This tells the configure script to prepare to install the
67 package in the <filename class="directory">${CLFS}/cross-tools</filename>
68 directory.</para>
69 </listitem>
70 </varlistentry>
71
72 <varlistentry os="bd2">
73 <term><parameter>--with-sysroot=${CLFS}</parameter></term>
74 <listitem>
75 <para>This tells configure that
76 <filename class="directory">${CLFS}</filename> is going to be
77 the root of our system. It will now use the specified sysroot,
78 <filename class="directory">${CLFS}</filename>.</para>
79 </listitem>
80 </varlistentry>
81
82 <varlistentry os="bd3">
83 <term><parameter>--host=${CLFS_HOST}</parameter></term>
84 <listitem>
85 <para>When used with --target, this creates a cross-architecture
86 executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
87 </listitem>
88 </varlistentry>
89
90 <varlistentry os="bd4">
91 <term><parameter>--target=${CLFS_TARGET}</parameter></term>
92 <listitem>
93 <para>When used with --host, this creates a cross-architecture
94 executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
95 </listitem>
96 </varlistentry>
97
98 <varlistentry os="bd5">
99 <term><parameter>--disable-nls</parameter></term>
100 <listitem>
101 <para>This disables internationalization as i18n is not needed for the
102 cross-compile tools.</para>
103 </listitem>
104 </varlistentry>
105
106 <varlistentry os="bd6">
107 <term><parameter>--enable-shared</parameter></term>
108 <listitem>
109 <para>Enable the creation of the shared libraries.</para>
110 </listitem>
111 </varlistentry>
112
113 <varlistentry os="bd7">
114 <term><parameter>--disable-multilib</parameter></term>
115 <listitem>
116 <para>This option disables the building of a multilib
117 capable Binutils.</para>
118 </listitem>
119 </varlistentry>
120
121 </variablelist>
122
123 <para os="be">Compile the package:</para>
124
125<screen os="bf"><userinput>make configure-host
126make</userinput></screen>
127
128 <variablelist os="bg">
129 <title>The meaning of the make options:</title>
130
131 <varlistentry os="bg1">
132 <term><parameter>configure-host</parameter></term>
133 <listitem>
134 <para>This checks the host environment and makes sure all the
135 necessary tools are available to compile Binutils.</para>
136 </listitem>
137 </varlistentry>
138
139 </variablelist>
140
141 <para os="bh">Install the package:</para>
142
143<screen os="bi"><userinput>make install</userinput></screen>
144
145 <para os="bj">Copy <filename class="headerfile">libiberty.h</filename> to
146 <filename class="directory">${CLFS}/tools/include</filename> directory:</para>
147
148<screen os="bk"><userinput>cp -v ../binutils-&binutils-version;/include/libiberty.h ${CLFS}/tools/include</userinput></screen>
149
150 </sect2>
151
152 <sect2 role="content">
153 <title/>
154
155 <para>Details on this package are located in <xref
156 linkend="contents-binutils" role="."/></para>
157
158 </sect2>
159
160</sect1>
Note: See TracBrowser for help on using the repository browser.