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

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since a10f292 was 1440429, checked in by Chris Staub <chris@…>, 15 years ago

Posix patches no longer needed

  • Property mode set to 100644
File size: 5.3 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
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 compiled before Glibc and
26 GCC 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 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
39 href="../../final-system/common/binutils.xml"
40 xpointer="xpointer(//*[@os='g'])"/>
41
42 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
43 href="../../final-system/common/binutils.xml"
44 xpointer="xpointer(//*[@os='h'])"/>
45
46 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
47 href="../../final-system/common/binutils.xml"
48 xpointer="xpointer(//*[@os='i'])"/>
49
50<screen os="bc"><userinput>AR=ar AS=as ../binutils-&binutils-version;/configure \
51 --prefix=/cross-tools --host=${CLFS_HOST} --target=${CLFS_TARGET} \
52 --with-sysroot=${CLFS} --with-lib-path=/tools/lib --disable-nls --enable-shared \
53 --disable-multilib</userinput></screen>
54
55 <variablelist os="bd">
56 <title>The meaning of the configure options:</title>
57
58 <varlistentry os="bd1">
59 <term><parameter>--prefix=/cross-tools</parameter></term>
60 <listitem>
61 <para>This tells the configure script to prepare to install the
62 package in the <filename class="directory">/cross-tools</filename>
63 directory.</para>
64 </listitem>
65 </varlistentry>
66
67 <varlistentry os="bd2">
68 <term><parameter>--host=${CLFS_HOST}</parameter></term>
69 <listitem>
70 <para>When used with --target, this creates a cross-architecture
71 executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
72 </listitem>
73 </varlistentry>
74
75 <varlistentry os="bd3">
76 <term><parameter>--target=${CLFS_TARGET}</parameter></term>
77 <listitem>
78 <para>When used with --host, this creates a cross-architecture
79 executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
80 </listitem>
81 </varlistentry>
82
83 <varlistentry os="bd4">
84 <term><parameter>--with-lib-path=/tools/lib</parameter></term>
85 <listitem>
86 <para>This tells the configure script to specify the library
87 search path during the compilation of Binutils, resulting in
88 <filename class="directory">/tools/lib</filename> being passed
89 to the linker. This prevents the linker from searching through
90 library directories on the host.</para>
91 </listitem>
92 </varlistentry>
93
94 <varlistentry os="bd5">
95 <term><parameter>--disable-nls</parameter></term>
96 <listitem>
97 <para>This disables internationalization as i18n is not needed for the
98 cross-compile tools.</para>
99 </listitem>
100 </varlistentry>
101
102 <varlistentry os="bd6">
103 <term><parameter>--enable-shared</parameter></term>
104 <listitem>
105 <para>Enable the creation of the shared libraries.</para>
106 </listitem>
107 </varlistentry>
108
109 <varlistentry os="bd7">
110 <term><parameter>--disable-multilib</parameter></term>
111 <listitem>
112 <para>This option disables the building of a multilib
113 capable Binutils.</para>
114 </listitem>
115 </varlistentry>
116
117 </variablelist>
118
119 <para os="be">Compile the package:</para>
120
121<screen os="bf"><userinput>make configure-host
122make</userinput></screen>
123
124 <variablelist os="bg">
125 <title>The meaning of the make options:</title>
126
127 <varlistentry os="bg1">
128 <term><parameter>configure-host</parameter></term>
129 <listitem>
130 <para>This checks the host environment and makes sure all the
131 necessary tools are available to compile Binutils.</para>
132 </listitem>
133 </varlistentry>
134
135 </variablelist>
136
137 <para os="bh">Install the package:</para>
138
139<screen os="bi"><userinput>make install</userinput></screen>
140
141 <para os="bj">Copy <filename class="headerfile">libiberty.h</filename> to
142 <filename class="directory">/tools/include</filename> directory:</para>
143
144<screen os="bk"><userinput>cp -v ../binutils-&binutils-version;/include/libiberty.h /tools/include</userinput></screen>
145
146 </sect2>
147
148 <sect2 role="content">
149 <title/>
150
151 <para>Details on this package are located in <xref
152 linkend="contents-binutils" role="."/></para>
153
154 </sect2>
155
156</sect1>
Note: See TracBrowser for help on using the repository browser.