On Wed, Jan 30, 2013 at 7:19 AM, Tango Nair <tangotst@xxxxxxxxx> wrote: > > i have cross tool chain gcc4 for our target(MIPS like). > how can i built native compiler using this cross tool chain? Assuming you have a fully functioning cross tool chain, build GCC in the usual way, but when you run configure pass --build, --host, and --target options. The --build option would be the system on which you are doing the build, the host system of your cross tool chain. The --host and --target options should be the same, and should be the target of your cross tool chain. Ian