>>>>> "Frank" == Frank Derichsweiler <[EMAIL PROTECTED]> writes:

Frank> I created a .tar.gz with the config.log etc. The file is ~ 15 k
Frank> and available at

Hi Frank,

The doctor says: your g++ is not configured correctly.

Let's see the symptoms:

---------------
configure:1675: checking for a working C++ compiler
configure:1711: g++ -o conftest    conftest.C  1>&5
/usr/i486-linux/bin/ld: cannot open crtbegin.o: No such file or directory
configure: failed program was:

#line 1706 "configure"
#include "confdefs.h"

class foo { int bar; }; int main(){return(0);}
---------------------

So, you have a command g++, but it does not work at all, partly
because the file crtbegin.o is missing (in fact, I suspect that many
other things are missing)

So, configure fallbacks on gcc, but it has problems too

--------------------------------------
configure:1909: gcc -c -g -O2 -fno-exceptions -fno-rtti  conftest.C 1>&5
cc1plus: Invalid option `-fno-exceptions'
configure: failed program was:
#line 1895 "configure"
#include "confdefs.h"
--------------------------------------

Configure uses the -fno-exceptions flag because it believes that gcc
is at least version 2.8 (probably because the headers tell him so).
However, this flag is not supported in version 2.7.x which is probably
what gcc is. 

What do 'gcc -v' and 'g++ -v' return?

JMarc

Reply via email to