This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Symbol compression?, linking problems.
Shane Nay writes:
> So, I'm guessing there is an error in the compression routines that
> check for text matchups in gcj, but then don't go back to the parent
> class to see if it matchs up.
Yes. Here's an even simplier case:
package foo.lang;
class X {
void foo (String x) {}
}
foo will get mangled:
_ZN3foo4lang1X3fooEPNS0_6StringE
foo::lang::X::foo(foo::lang::String*)
I don't have a fix yet, but I think I see what I can do.
Thank you for the bug report.
./A