Andrew Walrond wrote:
Can anybody explain what this error might mean?
/tmp/gcc-3-3.heretix/work/gcc/xgcc "" -B/tmp/gcc-3-3.heretix/work/gcc/
^^^
-c ../../../../gcc-3.3.6/libstdc++-v3/libsupc++/guard.cc -fPIC -DPIC -o
guard.o
^^
gcc sees those as two input files (two non-option arguments).
I suspect somewhere along the line you have something like
CFLAGS='""' by mistake, or somehow the string "" is being
passed into CFLAGS. Chekc your environment and whatever
args you gave to `make bootstrap'
Kean