[12a6490] | 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 |
|
---|
[dabbced] | 18 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[12a6490] | 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 |
|
---|
[e61fedb] | 30 | <!-- Branch update patch area
|
---|
[3e0fdeb] | 31 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
| 32 | href="../../final-system/common/binutils.xml"
|
---|
| 33 | xpointer="xpointer(//*[@os='p1'])"/>
|
---|
| 34 |
|
---|
| 35 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
| 36 | href="../../final-system/common/binutils.xml"
|
---|
| 37 | xpointer="xpointer(//*[@os='p2'])"/>
|
---|
[e61fedb] | 38 | -->
|
---|
[dabbced] | 39 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[12a6490] | 40 | href="../../final-system/common/binutils.xml"
|
---|
| 41 | xpointer="xpointer(//*[@os='g'])"/>
|
---|
| 42 |
|
---|
[dabbced] | 43 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[12a6490] | 44 | href="../../final-system/common/binutils.xml"
|
---|
| 45 | xpointer="xpointer(//*[@os='h'])"/>
|
---|
| 46 |
|
---|
[dabbced] | 47 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
[12a6490] | 48 | href="../../final-system/common/binutils.xml"
|
---|
| 49 | xpointer="xpointer(//*[@os='i'])"/>
|
---|
| 50 |
|
---|
[7cd7f99] | 51 | <screen os="bc"><userinput>AR=ar AS=as \
|
---|
| 52 | ../binutils-&binutils-dir;/configure \
|
---|
| 53 | --prefix=/cross-tools \
|
---|
| 54 | --host=${CLFS_HOST} \
|
---|
| 55 | --target=${CLFS_TARGET} \
|
---|
| 56 | --with-sysroot=${CLFS} \
|
---|
| 57 | --with-lib-path=/tools/lib \
|
---|
| 58 | --disable-nls \
|
---|
| 59 | --disable-static \
|
---|
| 60 | --enable-64-bit-bfd \
|
---|
| 61 | --disable-multilib \
|
---|
| 62 | --enable-gold=yes \
|
---|
| 63 | --enable-plugins \
|
---|
| 64 | --enable-threads \
|
---|
| 65 | --disable-werror</userinput></screen>
|
---|
[12a6490] | 66 |
|
---|
| 67 | <variablelist os="bd">
|
---|
[5cbf8bc] | 68 | <title>The meaning of the new configure options:</title>
|
---|
[12a6490] | 69 |
|
---|
[5cbf8bc] | 70 | <varlistentry os="bd1">
|
---|
[bd27efe] | 71 | <term><parameter>AR=ar AS=as</parameter></term>
|
---|
| 72 | <listitem>
|
---|
| 73 | <para>This prevents Binutils from compiling with ${CLFS_HOST}-ar
|
---|
| 74 | and ${CLFS_HOST}-as as they are provided by this package and therefore
|
---|
| 75 | not installed yet.</para>
|
---|
| 76 | </listitem>
|
---|
| 77 | </varlistentry>
|
---|
| 78 |
|
---|
[12a6490] | 79 | <varlistentry os="bd2">
|
---|
| 80 | <term><parameter>--host=${CLFS_HOST}</parameter></term>
|
---|
| 81 | <listitem>
|
---|
| 82 | <para>When used with --target, this creates a cross-architecture
|
---|
| 83 | executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
|
---|
| 84 | </listitem>
|
---|
| 85 | </varlistentry>
|
---|
| 86 |
|
---|
| 87 | <varlistentry os="bd3">
|
---|
| 88 | <term><parameter>--target=${CLFS_TARGET}</parameter></term>
|
---|
| 89 | <listitem>
|
---|
| 90 | <para>When used with --host, this creates a cross-architecture
|
---|
| 91 | executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para>
|
---|
| 92 | </listitem>
|
---|
| 93 | </varlistentry>
|
---|
| 94 |
|
---|
| 95 | <varlistentry os="bd4">
|
---|
[395af5a] | 96 | <term><parameter>--with-sysroot=${CLFS}</parameter></term>
|
---|
| 97 | <listitem>
|
---|
| 98 | <para>Tells configure to build a linker that uses ${CLFS} as its
|
---|
| 99 | root directory for its search paths.</para>
|
---|
| 100 | </listitem>
|
---|
| 101 | </varlistentry>
|
---|
| 102 |
|
---|
| 103 | <varlistentry os="bd5">
|
---|
[12a6490] | 104 | <term><parameter>--with-lib-path=/tools/lib</parameter></term>
|
---|
| 105 | <listitem>
|
---|
| 106 | <para>This tells the configure script to specify the library
|
---|
| 107 | search path during the compilation of Binutils, resulting in
|
---|
| 108 | <filename class="directory">/tools/lib</filename> being passed
|
---|
| 109 | to the linker. This prevents the linker from searching through
|
---|
| 110 | library directories on the host.</para>
|
---|
| 111 | </listitem>
|
---|
| 112 | </varlistentry>
|
---|
| 113 |
|
---|
[395af5a] | 114 | <varlistentry os="bd6">
|
---|
[12a6490] | 115 | <term><parameter>--disable-nls</parameter></term>
|
---|
| 116 | <listitem>
|
---|
| 117 | <para>This disables internationalization as i18n is not needed for the
|
---|
| 118 | cross-compile tools.</para>
|
---|
| 119 | </listitem>
|
---|
| 120 | </varlistentry>
|
---|
| 121 |
|
---|
[395af5a] | 122 | <varlistentry os="bd7">
|
---|
[12a6490] | 123 | <term><parameter>--disable-multilib</parameter></term>
|
---|
| 124 | <listitem>
|
---|
| 125 | <para>This option disables the building of a multilib
|
---|
| 126 | capable Binutils.</para>
|
---|
| 127 | </listitem>
|
---|
| 128 | </varlistentry>
|
---|
| 129 |
|
---|
[0d90041] | 130 | <varlistentry os="bd8">
|
---|
[dbf883c] | 131 | <term><parameter>--enable-64-bit-bfd</parameter></term>
|
---|
| 132 | <listitem>
|
---|
| 133 | <para>This adds 64 bit support to Binutils.</para>
|
---|
| 134 | </listitem>
|
---|
| 135 | </varlistentry>
|
---|
| 136 |
|
---|
| 137 | <varlistentry os="bd9">
|
---|
[0d90041] | 138 | <term><parameter>--disable-werror</parameter></term>
|
---|
| 139 | <listitem>
|
---|
| 140 | <para>This prevents the build from stopping in the event that there
|
---|
[543ed17] | 141 | are warnings from the host's compiler.</para>
|
---|
[0d90041] | 142 | </listitem>
|
---|
| 143 | </varlistentry>
|
---|
| 144 |
|
---|
[e869c0f] | 145 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
| 146 | href="../common/binutils.xml"
|
---|
| 147 | xpointer="xpointer(//*[@os='bd10'])"/>
|
---|
| 148 |
|
---|
| 149 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
| 150 | href="../common/binutils.xml"
|
---|
| 151 | xpointer="xpointer(//*[@os='bd11'])"/>
|
---|
| 152 |
|
---|
| 153 | <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
---|
| 154 | href="../common/binutils.xml"
|
---|
| 155 | xpointer="xpointer(//*[@os='bd12'])"/>
|
---|
| 156 |
|
---|
[12a6490] | 157 | </variablelist>
|
---|
| 158 |
|
---|
| 159 | <para os="be">Compile the package:</para>
|
---|
| 160 |
|
---|
[3eaa352a] | 161 | <screen os="bf"><userinput>make</userinput></screen>
|
---|
[12a6490] | 162 |
|
---|
| 163 | <para os="bh">Install the package:</para>
|
---|
| 164 |
|
---|
| 165 | <screen os="bi"><userinput>make install</userinput></screen>
|
---|
| 166 |
|
---|
| 167 | </sect2>
|
---|
| 168 |
|
---|
| 169 | <sect2 role="content">
|
---|
| 170 | <title/>
|
---|
| 171 |
|
---|
| 172 | <para>Details on this package are located in <xref
|
---|
| 173 | linkend="contents-binutils" role="."/></para>
|
---|
| 174 |
|
---|
| 175 | </sect2>
|
---|
| 176 |
|
---|
| 177 | </sect1>
|
---|