Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/eudev.xml

    rd672ab7 r9282602  
    8585  </sect2>
    8686
     87  <!-- - - - - - - - - - -->
     88  <!-- Multilib - 32bit  -->
     89  <!-- - - - - - - - - - -->
     90 
     91  <sect2 arch="ml_32,ml_all" role="installation">
     92    <title>Installation of Eudev - 32bit</title>
     93
     94    <para>Clean previous build:</para>
     95
     96<screen><userinput remap="pre">make distclean</userinput></screen>
     97
     98    <para>Prepare Eudev for compilation:</para>
     99
     100<screen><userinput remap="configure">CC="gcc -m32" \
     101./configure --host=i686-pc-linux-gnu       \
     102            --prefix=/usr                  \
     103            --bindir=/usr/sbin             \
     104            --libdir=/usr/lib32            \
     105            --sysconfdir=/etc              \
     106            --disable-manpages             \
     107            --disable-static</userinput></screen>
     108
     109    <para>Compile the package:</para>
     110
     111<screen><userinput remap="make">make</userinput></screen>
     112
     113    <para>Install the package:</para>
     114
     115<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
     116cp -Rv DESTDIR/usr/lib32/* /usr/lib32
     117rm -rf DESTDIR</userinput></screen>
     118
     119  </sect2><!-- m32 -->
     120
     121  <!-- - - - - - - - - - -->
     122  <!-- Multilib - x32bit -->
     123  <!-- - - - - - - - - - -->
     124 
     125  <sect2 arch="ml_x32,ml_all" role="installation">
     126    <title>Installation of Eudev - x32bit</title>
     127
     128    <para>Clean previous build:</para>
     129
     130<screen><userinput remap="pre">make distclean</userinput></screen>
     131
     132    <para>Prepare Eudev for compilation:</para>
     133
     134<screen><userinput remap="configure">CC="gcc -mx32" \
     135./configure --host=x86_64-lfs-linux-gnux32 \
     136            --prefix=/usr                  \
     137            --bindir=/usr/sbin             \
     138            --libdir=/usr/libx32           \
     139            --sysconfdir=/etc              \
     140            --disable-manpages             \
     141            --disable-static</userinput></screen>
     142
     143    <para>Compile the package:</para>
     144
     145<screen><userinput remap="make">make</userinput></screen>
     146
     147    <para>Install the package:</para>
     148
     149<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
     150cp -Rv DESTDIR/usr/libx32/* /usr/libx32
     151rm -rf DESTDIR</userinput></screen>
     152
     153  </sect2><!-- mx32 -->
     154
    87155  <sect2 id="conf-eudev" role="configuration">
    88156    <title>Configuring Eudev</title>
Note: See TracChangeset for help on using the changeset viewer.