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

clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d08e660 was d08e660, checked in by William Harrington <kb0iic@…>, 12 years ago

Disable the building of static libraries in appropriate secionts during cross-tools.

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