Re: Linker errors building libgcj.so (undefined refs to hidden aliases)
Diego Novillo <[email protected]>
| Newsgroups | gmane.comp.gcc.java.devel |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Aug 11, 2009 at 10:27, Andrew Haley<[email protected]> wrote: > You should see > > ... > 0000000000000070 T hidden alias for int java::util::zip::Inflater::getAdler() > ... > > as well as > > 0000000000000070 T int java::util::zip::Inflater::getAdler() > > I think something that you have done has disrupted the generation of > these hidden aliases. See build_java_method_aliases() in cp/decl2.c. Thanks, at the moment I only see $ nm --demangle java/util/zip/.libs/natInflater.o | grep getAdler 000000c0 T int java::util::zip::Inflater::getAdler() I see a few candidates in build_java_method_aliases, thanks for the pointer. Diego.