Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/prologue/common/hostreqs.xml

    r5db4466 rb80b685  
    4040
    4141    <listitem>
    42       <para><emphasis role="strong">Coreutils-5.0</emphasis></para>
     42      <para><emphasis role="strong">Coreutils-5.0</emphasis> (or Sh-Utils-2.0,
     43      Textutils-2.0, and Fileutils-4.1)</para>
    4344    </listitem>
    4445
     
    5253
    5354    <listitem>
    54       <para><emphasis role="strong">Gawk-3.1.5</emphasis></para>
     55      <para><emphasis role="strong">Gawk-3.0</emphasis></para>
    5556    </listitem>
    5657
    5758    <listitem>
    58       <para><emphasis role="strong">GCC-4.1.2</emphasis> and the C++ compiler,
    59       <command>g++</command> (Versions greater than &gcc-version; are not
    60       recommended as they have not been tested)</para>
     59      <para><emphasis role="strong">Gcc-2.95.3</emphasis> (Versions
     60      greater than &gcc-version; are not recommended as they have not
     61      been tested)</para>
    6162    </listitem>
    6263
     
    7677
    7778   <listitem>
    78      <para><emphasis role="strong">Linux 2.6.32 (Built with GCC 4.1.2 or later)</emphasis></para>
     79     <para><emphasis role="strong">Linux 2.6.22</emphasis></para>
    7980   </listitem>
    8081
    8182    <listitem>
    82       <para><emphasis role="strong">Make-3.80</emphasis></para>
     83      <para><emphasis role="strong">Make-3.79.1</emphasis></para>
    8384    </listitem>
    8485
     
    9697
    9798    <listitem>
    98       <para><emphasis role="strong">Tar-1.22</emphasis></para>
     99      <para><emphasis role="strong">Tar-1.14</emphasis></para>
    99100    </listitem>
    100101
     
    103104    </listitem>
    104105
    105     <listitem>
    106       <para><emphasis role="strong">XZ-Utils-4.999.8beta</emphasis></para>
    107     </listitem>
    108 
    109106  </itemizedlist>
    110107
    111   <para>To see whether your host system has all the appropriate versions,
    112   create and run the following script. Read the output carefully for any
    113   errors, and make sure to install any packages that are reported as not found.</para>
     108  <para>To see whether your host system has all the appropriate versions, run the following:</para>
    114109
    115110<screen role="nodump"><userinput>cat &gt; version-check.sh &lt;&lt; "EOF"
     
    127122gawk --version | head -n1
    128123gcc --version | head -n1
    129 g++ --version | head -n1
    130 ldd $(which ${SHELL}) | grep libc.so | cut -d ' ' -f 3 | ${SHELL} | head -n 1 | cut -d ' ' -f 1-7
     124/lib/libc.so.6 | head -n1 | cut -d" " -f1-7
    131125grep --version | head -n1
    132126gzip --version | head -n1
     
    137131sed --version | head -n1
    138132tar --version | head -n1
    139 makeinfo --version | head -n1
    140 xz --version | head -n1
    141 echo 'main(){}' | gcc -v -o /dev/null -x c - > dummy.log 2>&amp;1
    142 if ! grep -q ' error' dummy.log; then
    143   echo "Compilation successful" &amp;&amp; rm dummy.log
    144 else
    145   echo 1>&amp;2  "Compilation FAILED - more development packages may need to be \
    146 installed. If you like, you can also view dummy.log for more details."
    147 fi</literal>
     133makeinfo --version | head -n1</literal>
     134
    148135EOF
    149136
    150 bash version-check.sh 2>errors.log &amp;&amp;
    151 [ -s errors.log ] &amp;&amp; echo -e "\nThe following packages could not be found:\n$(cat errors.log)"</userinput></screen>
     137bash version-check.sh</userinput></screen>
    152138
    153139</sect1>
Note: See TracChangeset for help on using the changeset viewer.