Tom Dickens wrote:
 ../gcc/configure -enable-languages=c,c++,fortran.
make[1]: Leaving directory `/cygdrive/c/gcc-4.1.2/obj'

You ran the wrong configure script. You must always run the toplevel configure script, not the one inside the gcc directory.

So instead of doing
  cd gcc-4.1.2
  mkdir obj
  cd obj
  ../gcc/configure
which will fail.  You should instead do
  mkdir obj
  cd obj
  ../gcc-4.1.2/configure
which will work.
--
Jim Wilson, GNU Tools Support, http://www.specifix.com

Reply via email to