> I tried as you suggested, but unfortunately I got a different error:
> configure:3099: error: C compiler cannot create executables
>
> It looks like this is relevant fragment from the config.log (below). I'm
> looking around for possible ways to address this situation, but mostly I'm
> just stabbing at it. Any suggestions?
This reminds me of when I first installed Ubuntu (and for that matter
Debian) where a gcc is intalled, but not all of the standard headers
(for instance stdio.h - duh). Check to see if you've got stdio.h in
/usr/include. If not, you'll need to do something like (I'm on Gentoo
atm, so can't test the command):
apt-get install g++
This should then install the standard headers in /usr/include and then
gcc should be able to build a simple program.
HTH
Paul
|