- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/prologue/common/hostreqs.xml
r5db4466 rb80b685 40 40 41 41 <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> 43 44 </listitem> 44 45 … … 52 53 53 54 <listitem> 54 <para><emphasis role="strong">Gawk-3. 1.5</emphasis></para>55 <para><emphasis role="strong">Gawk-3.0</emphasis></para> 55 56 </listitem> 56 57 57 58 <listitem> 58 <para><emphasis role="strong">G CC-4.1.2</emphasis> and the C++ compiler,59 <command>g++</command> (Versions greater than &gcc-version; are not60 recommended as they have notbeen 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> 61 62 </listitem> 62 63 … … 76 77 77 78 <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> 79 80 </listitem> 80 81 81 82 <listitem> 82 <para><emphasis role="strong">Make-3. 80</emphasis></para>83 <para><emphasis role="strong">Make-3.79.1</emphasis></para> 83 84 </listitem> 84 85 … … 96 97 97 98 <listitem> 98 <para><emphasis role="strong">Tar-1. 22</emphasis></para>99 <para><emphasis role="strong">Tar-1.14</emphasis></para> 99 100 </listitem> 100 101 … … 103 104 </listitem> 104 105 105 <listitem>106 <para><emphasis role="strong">XZ-Utils-4.999.8beta</emphasis></para>107 </listitem>108 109 106 </itemizedlist> 110 107 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> 114 109 115 110 <screen role="nodump"><userinput>cat > version-check.sh << "EOF" … … 127 122 gawk --version | head -n1 128 123 gcc --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 131 125 grep --version | head -n1 132 126 gzip --version | head -n1 … … 137 131 sed --version | head -n1 138 132 tar --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>&1 142 if ! grep -q ' error' dummy.log; then 143 echo "Compilation successful" && rm dummy.log 144 else 145 echo 1>&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> 133 makeinfo --version | head -n1</literal> 134 148 135 EOF 149 136 150 bash version-check.sh 2>errors.log && 151 [ -s errors.log ] && echo -e "\nThe following packages could not be found:\n$(cat errors.log)"</userinput></screen> 137 bash version-check.sh</userinput></screen> 152 138 153 139 </sect1>
Note:
See TracChangeset
for help on using the changeset viewer.