Changeset 8eb3fe4 for chapter06/acl.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/acl.xml

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