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

    r1fa2099 r8eb3fe4  
    7979  </sect2>
    8080
     81  <sect2 arch="multilib" role="installation">
     82    <title>Installation of Attr - 32-bit</title>
     83
     84    <para>Clean previous build:</para>
     85
     86<screen><userinput remap="pre">make distclean</userinput></screen>
     87
     88    <para>Prepare Attr for compilation:</para>
     89
     90<screen><userinput remap="configure">CC="gcc -m32" ./configure \
     91    --prefix=/usr         \
     92    --disable-static      \
     93    --libdir=/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 Attr - x32-bit</title>
     110
     111    <para>Clean previous build:</para>
     112
     113<screen><userinput remap="pre">make distclean</userinput></screen>
     114
     115    <para>Prepare Attr for compilation:</para>
     116
     117<screen><userinput remap="configure">
     118CC="gcc -mx32" ./configure \
     119    --prefix=/usr          \
     120    --disable-static       \
     121    --libdir=/usr/libx32   \
     122    --host=x86_64-pc-linux-gnux32</userinput></screen>
     123
     124    <para>Compile the package:</para>
     125
     126<screen><userinput remap="make">make</userinput></screen>
     127
     128    <para>Install the package:</para>
     129
     130<screen><userinput remap="install">make DESTDIR=$(pwd)/DESTDIR install
     131cp -Rv DESTDIR/usr/libx32/* /usr/libx32
     132rm -rf DESTDIR</userinput></screen>
     133
     134  </sect2>
     135
    81136  <sect2 id="contents-attr" role="content">
    82137    <title>Contents of Attr</title>
Note: See TracChangeset for help on using the changeset viewer.