Tu <duongtu@xxxxxxxxx> writes: > Thanks for your suggest, > But what I mention here is not the languages, for my purpose, I want > to build GCC just only the compiler (CC1) without the linker or orther > execute outputs (xgcc) I'm not sure why you want to do that, but doing something like this would do it: configure <options> --disable-bootstrap --enable-languages=c make all-gcc ^C when it goes into the gcc directory cd gcc make cc1 Ian