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

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since dabbced was dabbced, checked in by Joe Ciccone <jciccone@…>, 13 years ago

Change the XInclude schema path from 2003 to 2001. 2003 is depreciated
according to w3.org and 2001 should be used instead.

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[3f8be484]1<?xml version="1.0" encoding="ISO-8859-1"?>
[aa18ac0]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[3f8be484]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
[dabbced]18  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[cf66ceae]19  href="../../final-system/common/binutils.xml"
20  xpointer="xpointer(//*[@role='package'])"/>
[3f8be484]21
22  <sect2 role="installation">
23    <title>Installation of Cross Binutils</title>
24
[292caee]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
[eba8490]27    linker and assembler to determine which of their own features to
28    enable.</para>
29
[dabbced]30    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]31    href="../../final-system/common/binutils.xml"
32    xpointer="xpointer(//*[@os='g'])"/>
33
[dabbced]34    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]35    href="../../final-system/common/binutils.xml"
36    xpointer="xpointer(//*[@os='h'])"/>
37
[dabbced]38    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[3f8be484]39    href="../../final-system/common/binutils.xml"
40    xpointer="xpointer(//*[@os='i'])"/>
41
[c1832da]42<screen os="bc"><userinput>AR=ar AS=as ../binutils-&binutils-version;/configure \
43  --prefix=/cross-tools --host=${CLFS_HOST} --target=${CLFS_TARGET} \
44  --with-sysroot=${CLFS} --with-lib-path=/tools/lib --disable-nls --enable-shared \
45  --enable-64-bit-bfd --disable-multilib</userinput></screen>
[3f8be484]46
47    <variablelist os="bd">
48      <title>The meaning of the configure options:</title>
49
50      <varlistentry os="bd1">
[bc2e3fa]51        <term><parameter>--prefix=/cross-tools</parameter></term>
[3f8be484]52        <listitem>
53          <para>This tells the configure script to prepare to install the
[bc2e3fa]54          package in the <filename class="directory">/cross-tools</filename>
[3f8be484]55          directory.</para>
56        </listitem>
57      </varlistentry>
58
59      <varlistentry os="bd2">
[bc2e3fa]60        <term><parameter>--host=${CLFS_HOST}</parameter></term>
[3f8be484]61        <listitem>
[bc2e3fa]62          <para>When used with --target, this creates a cross-architecture
63          executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
[3f8be484]64        </listitem>
65      </varlistentry>
66
67      <varlistentry os="bd3">
[bc2e3fa]68        <term><parameter>--target=${CLFS_TARGET}</parameter></term>
[3f8be484]69        <listitem>
[bc2e3fa]70          <para>When used with --host, this creates a cross-architecture
[3c06a53]71          executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
[3f8be484]72        </listitem>
73      </varlistentry>
74
75      <varlistentry os="bd4">
[bc2e3fa]76        <term><parameter>--with-lib-path=/tools/lib</parameter></term>
[3f8be484]77        <listitem>
[bc2e3fa]78          <para>This tells the configure script to specify the library
79          search path during the compilation of Binutils, resulting in
80          <filename class="directory">/tools/lib</filename> being passed
81          to the linker. This prevents the linker from searching through
82          library directories on the host.</para>
[3f8be484]83        </listitem>
84      </varlistentry>
85
86      <varlistentry os="bd5">
87        <term><parameter>--disable-nls</parameter></term>
88        <listitem>
89          <para>This disables internationalization as i18n is not needed for the
90          cross-compile tools.</para>
91        </listitem>
92      </varlistentry>
93
94      <varlistentry os="bd6">
95        <term><parameter>--enable-shared</parameter></term>
96        <listitem>
97          <para>Enable the creation of the shared libraries.</para>
98        </listitem>
99      </varlistentry>
100
101      <varlistentry os="bd7">
[ed8de1a]102        <term><parameter>--disable-multilib</parameter></term>
103        <listitem>
[8659630]104          <para>This option disables the building of a multilib
[3d11ab9]105          capable Binutils.</para>
[3f8be484]106        </listitem>
107      </varlistentry>
108
[12a6490]109      <varlistentry os="bd8">
110        <term><parameter>--enable-64-bit-bfd</parameter></term>
111        <listitem>
112          <para>This adds 64 bit support to Binutils.</para>
113        </listitem>
114      </varlistentry>
115
[3f8be484]116    </variablelist>
117
118    <para os="be">Compile the package:</para>
119
120<screen os="bf"><userinput>make configure-host
121make</userinput></screen>
122
[ed8de1a]123    <variablelist os="bg">
[3f8be484]124      <title>The meaning of the make options:</title>
125
[ed8de1a]126      <varlistentry os="bg1">
[3f8be484]127        <term><parameter>configure-host</parameter></term>
128        <listitem>
[ed8de1a]129          <para>This checks the host environment and makes sure all the
[0cdf4ac]130          necessary tools are available to compile Binutils.</para>
[3f8be484]131        </listitem>
132      </varlistentry>
133
134    </variablelist>
135
[ed8de1a]136    <para os="bh">Install the package:</para>
[3f8be484]137
[ed8de1a]138<screen os="bi"><userinput>make install</userinput></screen>
[3f8be484]139
[3d11ab9]140    <para os="bj">Copy <filename class="headerfile">libiberty.h</filename> to
[bc2e3fa]141    <filename class="directory">/tools/include</filename> directory:</para>
[3f8be484]142
[bc2e3fa]143<screen os="bk"><userinput>cp -v ../binutils-&binutils-version;/include/libiberty.h /tools/include</userinput></screen>
[3f8be484]144
145  </sect2>
146
147  <sect2 role="content">
148    <title/>
149
150    <para>Details on this package are located in <xref
151    linkend="contents-binutils" role="."/></para>
152
153  </sect2>
154
155</sect1>
Note: See TracBrowser for help on using the repository browser.