Margaret Doll wrote: > I need help in installing gcc in /usr/local. > > After configuring gcc in /usr/local/gcc-4.4.1/objdir using > > ../gcc/configure --prefix=/usr/local/ --enable-threads=[osix > --enable-shared --enable-languages=c++,java --enable-bootstrap > > I try > > make bootstrap > make: ** No rule to make target 'bootstrp'. Stop Evidently, you misspelled bootstrap as bootstrp. Also, --enable-bootstrap is the default in your case, and just make is fine. I can also see a typo posix as [osix, and, again, that --enable-threads is redundant, is the default, likewise for --enable-shared.
Paolo.