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

    r1fa2099 r8eb3fe4  
    105105  </sect2>
    106106
     107  <!-- ~~~~~~~~~~~~~~~~~~~~ ABI 32 ~~~~~~~~~~~~~~~~~~~~ -->
     108 
     109  <sect2 arch="multilib" role="installation">
     110    <title>Installation of Eudev - 32-bit</title>
     111
     112    <para>Clean previous build:</para>
     113
     114<screen><userinput remap="pre">make distclean</userinput></screen>
     115
     116    <para>Prepare Eudev for compilation:</para>
     117
     118<screen><userinput remap="configure">CC="gcc -m32" \
     119./configure --host=i686-pc-linux-gnu     \
     120            --prefix=/usr                \
     121            --bindir=/sbin               \
     122            --sbindir=/sbin              \
     123            --libdir=/usr/lib32          \
     124            --sysconfdir=/etc            \
     125            --libexecdir=/lib32          \
     126            --with-rootprefix=           \
     127            --with-rootlibdir=/usr/lib32 \
     128            --disable-manpages           \
     129            --disable-static             \
     130            --config-cache</userinput></screen>
     131
     132    <para>Compile the package:</para>
     133
     134<screen><userinput remap="make">make</userinput></screen>
     135
     136    <para>Install the package:</para>
     137
     138<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
     139cp -Rv DESTDIR/usr/lib32/* /usr/lib32
     140rm -rf DESTDIR</userinput></screen>
     141
     142  </sect2>
     143 
     144  <!-- ~~~~~~~~~~~~~~~~~~~~ ABI x32 ~~~~~~~~~~~~~~~~~~~~ -->
     145 
     146  <sect2 arch="multilib" role="installation">
     147    <title>Installation of Eudev - x32-bit</title>
     148
     149    <para>Clean previous build:</para>
     150
     151<screen><userinput remap="pre">make distclean</userinput></screen>
     152
     153    <para>Prepare Eudev for compilation:</para>
     154
     155<screen><userinput remap="configure">CC="gcc -mx32" \
     156./configure --prefix=/usr                 \
     157            --bindir=/sbin                \
     158            --sbindir=/sbin               \
     159            --libdir=/usr/libx32          \
     160            --sysconfdir=/etc             \
     161            --libexecdir=/libx32          \
     162            --with-rootprefix=            \
     163            --with-rootlibdir=/usr/libx32 \
     164            --disable-manpages            \
     165            --disable-static              \
     166            --config-cache</userinput></screen>
     167
     168    <para>Compile the package:</para>
     169
     170<screen><userinput remap="make">make</userinput></screen>
     171
     172    <para>Install the package:</para>
     173
     174<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
     175cp -Rv DESTDIR/usr/libx32/* /usr/libx32
     176rm -rf DESTDIR</userinput></screen>
     177
     178  </sect2>
     179 
    107180  <sect2 id="conf-eudev" role="configuration">
    108181    <title>Configuring Eudev</title>
Note: See TracChangeset for help on using the changeset viewer.