Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/temp-system/common/bash.xml

    r268f64e rdabbced  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE c:package [
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
     3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
    34  <!ENTITY % general-entities SYSTEM "../../general.ent">
    45  %general-entities;
    56]>
    67
    7 <c:package xmlns:c="http://schema.cross-lfs.org/book"
    8            xmlns:xi="http://www.w3.org/2001/XInclude"
    9            id="ch-temp-system-bash" c:multibuild="false">
     8<sect1 id="ch-temp-system-bash" role="wrap">
     9  <?dbhtml filename="bash.html"?>
    1010
    11   <c:title>Bash</c:title>
    12   <c:version>&bash-version;</c:version>
    13   <c:variant>temporary system</c:variant>
     11  <title>Bash-&bash-version;</title>
    1412
    15   <xi:include href="../../final-system/common/bash.xml"
    16     xpointer="xmlns(co=http://schema.cross-lfs.org/book)
    17               xpointer(/co:package/co:description[1])" />
     13  <indexterm zone="ch-temp-system-bash">
     14    <primary sortas="a-Bash">Bash</primary>
     15    <secondary>temporary system</secondary>
     16  </indexterm>
    1817
    19   <c:install>
     18  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     19  href="../../final-system/common/bash.xml"
     20  xpointer="xpointer(//*[@role='package'])"/>
    2021
    21     <xi:include href="../../final-system/common/bash.xml"
    22       xpointer="xmlns(co=http://schema.cross-lfs.org/book)
    23                 xpointer(/co:package/co:install/*[@co:r='p-bu'])" />
     22  <sect2 role="installation">
     23    <title>Installation of Bash</title>
    2424
    25     <c:para>When Bash is cross-compiled, it cannot test for the presence
    26     of named pipes, among other things. If you used <c:command>su</c:command> to
     25    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     26    href="../../final-system/common/bash.xml"
     27    xpointer="xpointer(//*[@os='p1'])"/>
     28
     29    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     30    href="../../final-system/common/bash.xml"
     31    xpointer="xpointer(//*[@os='p2'])"/>
     32
     33    <para os="t1">When Bash is cross-compiled, it cannot test for the presence
     34    of named pipes, among other things. If you used <command>su</command> to
    2735    become an unprivileged user, this combination will cause Bash to build
    28     without <c:emphasis>process substitution</c:emphasis>, which will break one
    29     of the C++ test scripts in <c:literal>eglibc</c:literal>. The following prevents
     36    without <emphasis>process substitution</emphasis>, which will break one
     37    of the C++ test scripts in <literal>eglibc</literal>. The following prevents
    3038    future problems by skipping the check for named pipes, as well as other
    31     tests that can not run while cross-compiling or that do not run properly:</c:para>
     39    tests that can not run while cross-compiling or that do not run properly:</para>
    3240
    33 <c:command>cat &gt; config.cache &lt;&lt; "EOF"
     41<screen os="t2"><userinput>cat &gt; config.cache &lt;&lt; "EOF"
    3442ac_cv_func_mmap_fixed_mapped=yes
    3543ac_cv_func_strcoll_works=yes
     
    4452bash_cv_unusable_rtsigs=no
    4553gt_cv_int_divbyzero_sigfpe=yes
    46 EOF</c:command>
     54EOF</userinput></screen>
    4755
    48     <c:para>Prepare Bash for compilation:</c:para>
     56    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     57    href="../../final-system/common/bash.xml"
     58    xpointer="xpointer(//*[@os='a'])"/>
    4959
    50 <c:command c:arch="alpha,mips,ppc,sparc,x86">./configure -prefix=/tools \
    51     -build=${CLFS_HOST} -host=${CLFS_TARGET} \
    52     -without-bash-malloc -cache-file=config.cache</c:command>
    53 <c:command c:arch="mips64-64,mips64,ppc64,sparc64-64,sparc64,x86_64-64,x86_64">CC="${CC} ${BUILD64}" CXX="${CXX} ${BUILD64}" \
    54    ./configure --prefix=/tools \
    55    --build=${CLFS_HOST} --host=${CLFS_TARGET} \
    56    --without-bash-malloc --cache-file=config.cache</c:command>
     60<screen os="b"><userinput>./configure --prefix=/tools \
     61    --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     62    --without-bash-malloc --cache-file=config.cache</userinput></screen>
    5763
    58 <!--
    5964    <variablelist os="c">
    6065      <title>The meaning of the configure option:</title>
    6166
    6267      <varlistentry>
    63         <term><parameter>-without-bash-malloc</parameter></term>
     68        <term><parameter>--without-bash-malloc</parameter></term>
    6469        <listitem>
    6570          <para>This option turns off the use of Bash's memory allocation
     
    7176
    7277    </variablelist>
    73 -->
    7478
    75     <c:para>Compile the package:</c:para>
     79    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     80    href="../../final-system/common/bash.xml"
     81    xpointer="xpointer(//*[@os='d'])"/>
    7682
    77 <c:command>make</c:command>
     83    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     84    href="../../final-system/common/bash.xml"
     85    xpointer="xpointer(//*[@os='e'])"/>
    7886
    79     <c:para>Install the package:</c:para>
     87    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     88    href="../../final-system/common/bash.xml"
     89    xpointer="xpointer(//*[@os='g'])"/>
    8090
    81 <c:command>make install</c:command>
     91<screen os="h"><userinput>make install</userinput></screen>
    8292
    83     <c:para>Make a link for programs that use <c:command>sh</c:command> for
    84     a shell:</c:para>
     93    <para os="t3">Make a link for programs that use <command>sh</command> for
     94    a shell:</para>
    8595
    86 <c:command>ln -sv bash /tools/bin/sh</c:command>
     96<screen os="t4"><userinput>ln -sv bash /tools/bin/sh</userinput></screen>
    8797
    88   </c:install>
     98  </sect2>
    8999
    90   <c:contents c:ref="ch-system-bash" />
     100  <sect2 role="content">
     101    <title/>
    91102
    92 </c:package>
     103    <para>Details on this package are located in <xref
     104    linkend="contents-bash" role="."/></para>
    93105
     106  </sect2>
     107
     108</sect1>
Note: See TracChangeset for help on using the changeset viewer.