James Mathis wrote: > During the build process (make) for gcc4.2, an error was received. Please > see the following information. Thanks. > ... > /usr/bin/ld: crti.o: No such file: No such file or directory > collect2: Id returned 1 exit status You appear to not have the 32 bit libc development package installed, however gcc by default is multilibbed on x86_64 in order to support -m32. You need to either install the missing package or --disable-multilib. Brian