Hello, I'm currently in the process of bootstrapping GCC 4.8.0 from version 4.7.0 on an Android tablet in a terminal app that simulates a proper Linux file system. Everything goes well until stage3. The make seems to be trying to configure and build any library that was not specifically disabled in the initial top-level build. This causes errors that did not occur earlier in the process. The first time this happened, I fixed (I think) the problem by rerunning the top level config with the added ---disable-xxxx option...where xxxx is the library that stage3 suddenly tries to build, and running make restrap. I've run into the same problem again, and since restrapping takes a *long* time on my device, and because i have limited commandline space, I'd like to know if there's an easier way to get stage3 to only build stuff that's already been built in previous stages. Let me know what info I should post about this problem that would help. For now, here is the last top-level configure: ../gcc-4.8.0/configure --prefix=/usr/gcc-4.8 --build=arm-linux-androideabi --host=arm-linux-androideabi --target=arm-linux-androideabi --disable-ld --with-as=/usr/gcc-4.8/bin/as --with-ld=/usr/gcc-4.8/bin/ld --enable-shared --enable-languages=c,c++ -disable-gold --disable-fortran --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libada --disable-nls --disable-werror --disable-multilib --disable-libgomp --disable-cloog --disable-sjlj-exceptions --disable-libitm --disable-ppl --with-build-time-tools=/usr/gcc-4.8/bin --with-sysroot=/usr/gcc-4.8/sysroot --with-build-sysroot=/usr/gcc-4.8/sysroot "CFLAGS=-Wall -O2 -mandroid -mbionic" "LDFLAGS=-Wl,--dynamic-linker=/system/bin/linker -lc -ldl -lgcc -lm" "LIBCFLAGS=-O2 -g -mandroid -mbionic" "LIBCPPFLAGS=-O2 -g -mandroid -mbionic" "CXXFLAGS=-frtti" "LIBCXXFLAGS=-O2 -g -mandroid -mbionic -fno-implicit-templates" "LIBS=-lc -ldl -lgcc -lm -lsupc++ -lgnustl_shared" SHELL=/system/bin/sh