mtab a real file now
[linux_from_scratch.git] / FAQ-OBSOLETE / conf-guess-fail.xml
blob6f920c3f90b3d9385eafbf6405e895fb735c350f
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
7 specify one</emphasis><!-- XXX: remove that line break after fixing the tableized layout -->
8 sk ~/tmp-0.0 $
9 </screen></para>
10 <para>The problem is usually that the script can't run the compiler.
11 Usually it's just a missing /usr/bin/cc symlink. You can fix it like this:
12 <screen>cd /usr/bin
13 ln -s gcc cc
14 </screen></para>
15 <para>If that doesn't do it, check the file config.log created by configure.
16 Errors go there and may indicate the problem.
17 </para></answer>
18 </qandaentry>