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
  • chapter06/libtool.xml

    r1fa2099 r8eb3fe4  
    7272
    7373
     74  <sect2 arch="multilib" role="installation">
     75    <title>Installation of Libtool - 32-bit</title>
     76
     77    <para>Clean previous build:</para>
     78
     79<screen><userinput remap="pre">make distclean</userinput></screen>
     80
     81    <para>Prepare Libtool for compilation:</para>
     82
     83<screen><userinput remap="configure">CC="gcc -m32" ./configure \
     84    --prefix=/usr         \
     85    --libdir=/usr/lib32   \
     86    --host=i686-pc-linux-gnu</userinput></screen>
     87
     88    <para>Compile the package:</para>
     89
     90<screen><userinput remap="make">make</userinput></screen>
     91
     92    <para>Install the package:</para>
     93
     94<screen><userinput remap="install">make DESTDIR=$(pwd)/DESTDIR install
     95cp -Rv DESTDIR/usr/lib32/* /usr/lib32
     96rm -rf DESTDIR</userinput></screen>
     97
     98  </sect2>
     99
     100  <sect2 arch="multilib" role="installation">
     101    <title>Installation of Libtool - x32-bit</title>
     102
     103    <para>Clean previous build:</para>
     104
     105<screen><userinput remap="pre">make distclean</userinput></screen>
     106
     107    <para>Prepare Libtool for compilation:</para>
     108
     109<screen><userinput remap="configure">
     110CC="gcc -mx32" ./configure \
     111    --prefix=/usr          \
     112    --libdir=/usr/libx32   \
     113    --host=x86_64-pc-linux-gnux32</userinput></screen>
     114
     115    <para>Compile the package:</para>
     116
     117<screen><userinput remap="make">make</userinput></screen>
     118
     119    <para>Install the package:</para>
     120
     121<screen><userinput remap="install">make DESTDIR=$(pwd)/DESTDIR install
     122cp -Rv DESTDIR/usr/libx32/* /usr/libx32
     123rm -rf DESTDIR</userinput></screen>
     124
     125  </sect2>
     126
     127
    74128  <sect2 id="contents-libtool" role="content">
    75129    <title>Contents of Libtool</title>
Note: See TracChangeset for help on using the changeset viewer.