This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: Bug in C++ tree inlining or in PPC backend?
Mark Mitchell <mark@codesourcery.com> writes:
> We don't have a powerpc system to play with, which is why I'm going to
> need lots of help from you, sadly.
You can build a powerpc test environment by going to
sourceware.cygnus.com, downloading gdb, gcc, binutils, newlib, putting
them all in the same directory (so you have ./sim, ./gcc/, ./gas/,
./libgloss/), and configuring with
configure --target=powerpc-unknown-eabi
then you should be able to do "make" then
make check RUNTESTFLAGS='--target_board=powerpc-sim'
and it should just work, running the tests on the simulator.
In fact, you can build gdb and binutils separately. You have to build
newlib and gcc together the first time because newlib needs gcc to
build but gcc needs newlib's headers.
--
- Geoffrey Keating <geoffk@cygnus.com>