Yuan Song <ysong6@xxxxxxxxx> writes: > I need to get a gcc cross compiler which can generate > objects for an enbeded powerpc board which will run > linux. How can I specify the target type? Should I > use powerpc*-*-linux-gnu* or powerpc-*-eabi. How > should I fill the "*" fields. For example, if I have > a 750 cpu, should I use sth like powerpc-750-eabi. If you are running GNU/Linux on the board, use "powerpc-linux-gnu". If you are using some bare bones embedded OS, use "powerpc-eabi". Don't worry about filling in the '*' fields; just omit the fields entirely. You may want to consider using the --with-cpu or --with-arch options mentioned in the installation documentation. Ian