Changeset 8eb3fe4 for chapter06/file.xml


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/file.xml

    r1fa2099 r8eb3fe4  
    6060  </sect2>
    6161
     62  <sect2 arch="multilib" role="installation">
     63    <title>Installation of File - 32-bit</title>
     64
     65    <para>Clean previous build:</para>
     66
     67<screen><userinput remap="pre">make distclean</userinput></screen>
     68
     69    <para>Prepare File for compilation:</para>
     70
     71<screen><userinput remap="configure">CC="gcc -m32" ./configure \
     72    --prefix=/usr         \
     73    --libdir=/usr/lib32   \
     74    --host=i686-pc-linux-gnu</userinput></screen>
     75
     76    <para>Compile the package:</para>
     77
     78<screen><userinput remap="make">make</userinput></screen>
     79
     80    <para>Install the package:</para>
     81
     82<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
     83cp -Rv DESTDIR/usr/lib32/* /usr/lib32
     84rm -rf DESTDIR</userinput></screen>
     85
     86  </sect2>
     87
     88  <sect2 arch="multilib" role="installation">
     89    <title>Installation of File - x32-bit</title>
     90
     91    <para>Clean previous build:</para>
     92
     93<screen><userinput remap="pre">make distclean</userinput></screen>
     94
     95    <para>Prepare File for compilation:</para>
     96
     97<screen><userinput remap="configure">
     98CC="gcc -mx32" ./configure \
     99    --prefix=/usr          \
     100    --libdir=/usr/libx32   \
     101    --host=x86_64-pc-linux-gnux32</userinput></screen>
     102
     103    <para>Compile the package:</para>
     104
     105<screen><userinput remap="make">make</userinput></screen>
     106
     107    <para>Install the package:</para>
     108
     109<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
     110cp -Rv DESTDIR/usr/libx32/* /usr/libx32
     111rm -rf DESTDIR</userinput></screen>
     112
     113  </sect2>
    62114
    63115  <sect2 id="contents-file" role="content">
Note: See TracChangeset for help on using the changeset viewer.