Ignore:
Timestamp:
04/01/2019 05:00:45 PM (5 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib-10.1
Children:
7d9f881
Parents:
1fa2099
Message:

First apply of multilib-patch of April 1st, 2019

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11566 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/binutils-pass1.xml

    r1fa2099 r8eb3fe4  
    7373    <para>Now prepare Binutils for compilation:</para>
    7474
    75 <screen><userinput remap="configure">../configure --prefix=/tools            \
     75<screen arch="default"><userinput remap="configure">../configure --prefix=/tools            \
    7676             --with-sysroot=$LFS        \
    7777             --with-lib-path=/tools/lib \
     
    7979             --disable-nls              \
    8080             --disable-werror</userinput></screen>
     81
     82    <screen arch="multilib"><userinput remap="configure">../configure --prefix=/tools \
     83             --with-sysroot=$LFS                     \
     84             --with-lib-path=/tools/lib:/tools/lib32:/tools/libx32 \
     85             --target=$LFS_TGT                       \
     86             --disable-nls                           \
     87             --disable-werror                        \
     88             --enable-64-bit-bfd                     \
     89             --enable-multilib</userinput></screen>
    8190
    8291    <variablelist>
     
    147156    first pass will soon be replaced by those from the second.</para>
    148157
    149     <para>If building on x86_64, create a symlink to ensure the sanity of
     158    <para arch="default">If building on x86_64, create a symlink to ensure the
     159    sanity of the toolchain:</para>
     160
     161    <para arch="multilib">Create a symlink to ensure the sanity of
    150162    the toolchain:</para>
    151163
    152 <screen><userinput remap="install">case $(uname -m) in
     164<screen arch="default"><userinput remap="install">case $(uname -m) in
    153165  x86_64) mkdir -v /tools/lib &amp;&amp; ln -sv lib /tools/lib64 ;;
    154166esac</userinput></screen>
     167
     168<screen arch="multilib"><userinput remap="install">mkdir -v /tools/lib &amp;&amp;
     169ln -sv lib /tools/lib64</userinput></screen>
    155170
    156171    <para>Install the package:</para>
Note: See TracChangeset for help on using the changeset viewer.