This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: Build problem(libgcj on linuxppc(R5))
I checked my libgcc and nof/libgcc (using strings | sort | less ) and the
function __throw does not appear in either library. Is there an option
to configure that I left out when I build gcc???
Thanks,
Tom Tromey wrote:
> >>>>> "Will" == Will Sloan <wsloan@occamnetworks.com> writes:
>
> Will> I'm trying to build libgcj in a cross enviorment. In the native
> Will> (Redhat 6.0 system), libgcj compiled fine, so I went looking
> Will> through /lib and /usr/lib to see what library had __throw.
> Will> Thats when I found libstdc++. Then I went to my linuxppc
> Will> machine (R5) and looked at libstdc++ and sure enough __throw was
> Will> there. Therefore I concluded that my libstdc++ build must be
> Will> bad. My question now is how to fix this??
>
> __throw should appear in libgcc, not libstdc++.
> libgcc isn't in /lib or /usr/lib. On my machine it is below
> /usr/lib/gcc-lib.
>
> First we should check to make sure your link is linking in this
> library. You can do this by running the link by hand and adding the
> "-v" argument to the command-line. Then examine the actual linker
> command to see what is really linked in (gcj links in special
> libraries behind your back).
>
> Tom