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))
Tom Tromey wrote:
> >>>>> "Will" == Will Sloan <wsloan@occamnetworks.com> writes:
>
> Will> I am trying to build libgcj-2.95 for linuxppc. Even after
> Will> applying the patch that was posted to this mailing this, I'm
> Will> still getting the same link errors (ie, __throw and
> Will> ____get_eh_table_language).
>
> These functions should appear in libgcc. The question is why they
> don't appear there for you.
>
> Will> After some looking around, I found that __throw is supposed to
> Will> live in libstdc++
>
> How did you arrive at this conclusion?
>
> Tom
I'm trying to build libgcj in a cross enviorment. In the native (Redhat
6.0 system), libgcj compiled fine, so I went looking through /lib and
/usr/lib to see what library had __throw. Thats when I found
libstdc++. Then I went to my linuxppc machine (R5) and looked at
libstdc++ and sure enough __throw was there. Therefore I concluded that
my libstdc++ build must be bad. My question now is how to fix this??
Will