This is the mail archive of the
java-prs@gcc.gnu.org
mailing list for the Java project.
[Bug libgcj/38396] [4.4 Regression] libgcj_bc for 4.3 and 4.4 are binary incompatible but have the same SONAME
- From: "jakub at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: java-prs at gcc dot gnu dot org
- Date: 10 Dec 2008 11:23:09 -0000
- Subject: [Bug libgcj/38396] [4.4 Regression] libgcj_bc for 4.3 and 4.4 are binary incompatible but have the same SONAME
- References: <bug-38396-10053@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #8 from jakub at gcc dot gnu dot org 2008-12-10 11:23 -------
That is a bug then.
I guess libjava/Makefile.am needs to be fixed.
ecjx_LDADD = -L$(here)/.libs libgcj.la
should be likely:
if ENABLE_SHARED
ecjx_LDADD = -L$(here)/.libs
else
ecjx_LDADD = -L$(here)/.libs libgcj.la
endif
(or, if ecj1 is meant to be libgcj.so.X version dependent, shouldn't be
compiled/linked with -findirect-dispatch).
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38396