aboutsummaryrefslogtreecommitdiff
path: root/libjava/Makefile.am
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-03-21 18:43:03 +0000
committerTom Tromey <tromey@gcc.gnu.org>2001-03-21 18:43:03 +0000
commit7e0c895f0e83b1410470d48751c2ed400cdba5a2 (patch)
tree269743ba6b20928e1c65bda29d411ef0892d258e /libjava/Makefile.am
parent9346c5a7d81d2f904dd9f5747341e55b8017cf61 (diff)
downloadgcc-7e0c895f0e83b1410470d48751c2ed400cdba5a2.tar.gz
gcc-7e0c895f0e83b1410470d48751c2ed400cdba5a2.tar.bz2
gcc-7e0c895f0e83b1410470d48751c2ed400cdba5a2.zip
configure: Rebuilt.
* configure: Rebuilt. * configure.in (GCJFLAGS): Subst. * Makefile.in: Rebuilt. * Makefile.am (jv_convert_LDFLAGS): Added -shared-libgcc. (gij_LDFLAGS): Likewise. (JC1FLAGS): Added GCJFLAGS and removed -g. From-SVN: r40700
Diffstat (limited to 'libjava/Makefile.am')
-rw-r--r--libjava/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/Makefile.am b/libjava/Makefile.am
index 3d5d563387a..e5875e59482 100644
--- a/libjava/Makefile.am
+++ b/libjava/Makefile.am
@@ -106,7 +106,7 @@ AM_CFLAGS = @LIBGCJ_CFLAGS@
endif
JCFLAGS = -g
-JC1FLAGS = -g @LIBGCJ_JAVAFLAGS@
+JC1FLAGS = @LIBGCJ_JAVAFLAGS@ $(GCJFLAGS)
LIBFFIINCS = -I$(top_srcdir)/../libffi/include -I$(MULTIBUILDTOP)../libffi/include
@@ -416,7 +416,7 @@ EXTRA_jv_convert_SOURCES = $(convert_source_files)
## need this because we are explicitly using libtool to link using the
## `.la' file.
jv_convert_LDFLAGS = --main=gnu.gcj.convert.Convert \
- -rpath $(toolexeclibdir)
+ -rpath $(toolexeclibdir) -shared-libgcc
jv_convert_LINK = $(GCJLINK)
## We explicitly link in the libraries we need. This way we don't
## need -nodefaultlibs, so we can still rely on gcj picking up the
@@ -434,7 +434,7 @@ gij_SOURCES = gij.cc
## We need -nodefaultlibs because we want to avoid gcj's `-lgcj'. We
## need this because we are explicitly using libtool to link using the
## `.la' file.
-gij_LDFLAGS = -rpath $(toolexeclibdir)
+gij_LDFLAGS = -rpath $(toolexeclibdir) -shared-libgcc
gij_LINK = $(GCJLINK)
## We explicitly link in the libraries we need. This way we don't
## need -nodefaultlibs, so we can still rely on gcj picking up the