added man-patch.xml file
[linux_from_scratch.git] / FAQ-OBSOLETE / conf-guess-fail.xml
blobfa99860eeb2aab007052dc7ca0a6829560ac2189
1 <qandaentry id="conf-guess-fail">
2 <question><para>configure can't guess my host type.</para></question>
3 <answer><para>Typical symptoms look like this:
4 <screen>sk ~/tmp-0.0 $ ./configure 
5 creating cache ./config.cache
6 checking host system type... <emphasis role="strong">configure: error: can not guess host type; you must specify one</emphasis>
7 sk ~/tmp-0.0 $
8 </screen></para>
9 <para>The problem is usually that the script can't run the compiler.
10 Usually it's just a missing /usr/bin/cc symlink. You can fix it like this:
11 <screen>cd /usr/bin
12 ln -s gcc cc
13 </screen></para>
14 <para>If that doesn't do it, check the file config.log created by configure.
15 Errors go there and may indicate the problem.
16 </para></answer>
17 </qandaentry>