Hi, I have tried to compile GCC 4.7.0 under Ubuntu 11.10 64 bit with the following configuration parameters: configure -v --enable-languages=c,c++,fortran --prefix=/opt/gcc-4.7.0 --enable-shared --enable-linker-build-id --program-suffix=-4.7.0 --enable-threads=posix --disable-werror --with-cpu=native --with-arch=native --with-tune=native --enable-nls --without-included-gettext --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-checking=release --with-system-zlib --with-fpmath=avx --enable-lto --with-ppl --with-cloog I get this error: mv: cannot stat `Makefile': No such file or directory /bin/bash: line 2: Makefile.tmp: No such file or directory make[7]: Entering directory `/home/username/Desktop/gcc-build/x86_64-unknown-linux-gnu/libstdc++-v3/src/debug' make[7]: *** No rule to make target `all'. Stop. make[7]: Leaving directory `/home/username/Desktop/gcc-build/x86_64-unknown-linux-gnu/libstdc++-v3/src/debug' make[6]: *** [build-debug] Error 2 make[6]: Leaving directory `/home/username/Desktop/gcc-build/x86_64-unknown-linux-gnu/libstdc++-v3/src' make[5]: *** [all-recursive] Error 1 make[5]: Leaving directory `/home/username/Desktop/gcc-build/x86_64-unknown-linux-gnu/libstdc++-v3/src' make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory `/home/username/Desktop/gcc-build/x86_64-unknown-linux-gnu/libstdc++-v3' make[3]: *** [all] Error 2 make[3]: Leaving directory `/home/username/Desktop/gcc-build/x86_64-unknown-linux-gnu/libstdc++-v3' make[2]: *** [all-stagefeedback-target-libstdc++-v3] Error 2 make[2]: Leaving directory `/home/username/Desktop/gcc-build' make[1]: *** [stagefeedback-bubble] Error 2 make[1]: Leaving directory `/home/username/Desktop/gcc-build' make: *** [profiledbootstrap] Error 2 With gcc 4.6.2 all works well. Thank Salvatore