On 10/12/2009 08:26 PM, William Tracy (wtracy) wrote:
Hello,
I'm trying to cross-compile a library that uses GNU Autotools (Google
Coredumper, to be specific) for PPC using the MontaVista tool chain. The
sequence of commands I'm following is:
$ ./configure --host=ppc CC=/path/to/gcc CXX=/path/to/g++
Normally, a cross-toolchain's tools are called <host>-<tool>
i.e.
* one normally doesn't have to set CC nor CXX.
* the value being passed to --host is the tool prefix and therefore must
match the tool-prefix being used by your toolchain.
Ralf