- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/temp-system/common/bash.xml
r268f64e rdabbced 1 1 <?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" [ 3 4 <!ENTITY % general-entities SYSTEM "../../general.ent"> 4 5 %general-entities; 5 6 ]> 6 7 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"?> 10 10 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> 14 12 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> 18 17 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'])"/> 20 21 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> 24 24 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 27 35 become an unprivileged user, this combination will cause Bash to build 28 without < c:emphasis>process substitution</c:emphasis>, which will break one29 of the C++ test scripts in < c:literal>eglibc</c:literal>. The following prevents36 without <emphasis>process substitution</emphasis>, which will break one 37 of the C++ test scripts in <literal>eglibc</literal>. The following prevents 30 38 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> 32 40 33 < c:command>cat > config.cache << "EOF"41 <screen os="t2"><userinput>cat > config.cache << "EOF" 34 42 ac_cv_func_mmap_fixed_mapped=yes 35 43 ac_cv_func_strcoll_works=yes … … 44 52 bash_cv_unusable_rtsigs=no 45 53 gt_cv_int_divbyzero_sigfpe=yes 46 EOF</ c:command>54 EOF</userinput></screen> 47 55 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'])"/> 49 59 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> 57 63 58 <!--59 64 <variablelist os="c"> 60 65 <title>The meaning of the configure option:</title> 61 66 62 67 <varlistentry> 63 <term><parameter>- without-bash-malloc</parameter></term>68 <term><parameter>--without-bash-malloc</parameter></term> 64 69 <listitem> 65 70 <para>This option turns off the use of Bash's memory allocation … … 71 76 72 77 </variablelist> 73 -->74 78 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'])"/> 76 82 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'])"/> 78 86 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'])"/> 80 90 81 < c:command>make install</c:command>91 <screen os="h"><userinput>make install</userinput></screen> 82 92 83 < c:para>Make a link for programs that use <c:command>sh</c:command> for84 a shell:</ c:para>93 <para os="t3">Make a link for programs that use <command>sh</command> for 94 a shell:</para> 85 95 86 < c:command>ln -sv bash /tools/bin/sh</c:command>96 <screen os="t4"><userinput>ln -sv bash /tools/bin/sh</userinput></screen> 87 97 88 </ c:install>98 </sect2> 89 99 90 <c:contents c:ref="ch-system-bash" /> 100 <sect2 role="content"> 101 <title/> 91 102 92 </c:package> 103 <para>Details on this package are located in <xref 104 linkend="contents-bash" role="."/></para> 93 105 106 </sect2> 107 108 </sect1>
Note:
See TracChangeset
for help on using the changeset viewer.