aboutsummaryrefslogtreecommitdiff
path: root/libjava
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@pobox.com>1999-10-02 15:44:24 +0000
committerAnthony Green <green@gcc.gnu.org>1999-10-02 15:44:24 +0000
commit9a480d69231c7a3664810b92b19d9b905f9e61c0 (patch)
treec6b3f0e39e6729d1d81835c316f549ac9a7ed987 /libjava
parent97ca93c3aef6c1b519661e4dddc1e8272f1ccc63 (diff)
downloadgcc-9a480d69231c7a3664810b92b19d9b905f9e61c0.zip
gcc-9a480d69231c7a3664810b92b19d9b905f9e61c0.tar.gz
gcc-9a480d69231c7a3664810b92b19d9b905f9e61c0.tar.bz2
The following patches include a couple of fixes for cross toolchains,
and endian bits for the picojava port. I am committing this (and the rebuilt Makefile.in/configure files). From-SVN: r29765
Diffstat (limited to 'libjava')
-rw-r--r--libjava/Makefile.am1
-rw-r--r--libjava/configure.in2
-rw-r--r--libjava/java/lang/ieeefp.h8
3 files changed, 10 insertions, 1 deletions
diff --git a/libjava/Makefile.am b/libjava/Makefile.am
index dc5a034..dc5ff59 100644
--- a/libjava/Makefile.am
+++ b/libjava/Makefile.am
@@ -80,6 +80,7 @@ JCFLAGS = -g
JC1FLAGS = -g @LIBGCJ_JAVAFLAGS@
LIBFFIINCS = -I$(top_srcdir)/../libffi/include -I../libffi/include
+ZINCS = -I$(top_srcdir)/../zlib
INCLUDES = -I$(top_srcdir) -Iinclude -I$(top_srcdir)/include \
$(GCINCS) $(THREADINCS) \
diff --git a/libjava/configure.in b/libjava/configure.in
index 375242b..a6557d1 100644
--- a/libjava/configure.in
+++ b/libjava/configure.in
@@ -302,7 +302,7 @@ if test -n "${with_cross_host}"; then
dnl We also assume we are using gcc, which provides alloca.
AC_DEFINE(HAVE_ALLOCA)
- ZLIBSPEC=-lgcj
+ ZLIBSPEC=-lzgcj
# If Canadian cross, then don't pick up tools from the build
# directory.
diff --git a/libjava/java/lang/ieeefp.h b/libjava/java/lang/ieeefp.h
index 1f0951f..bf0cafc 100644
--- a/libjava/java/lang/ieeefp.h
+++ b/libjava/java/lang/ieeefp.h
@@ -66,6 +66,14 @@
#define __IEEE_BIG_ENDIAN
#endif
+#ifdef __pj__
+#ifdef __pjl__
+#define __IEEE_LITTLE_ENDIAN
+#else
+#define __IEEE_BIG_ENDIAN
+#endif
+#endif
+
/* necv70 was __IEEE_LITTLE_ENDIAN. */
#ifdef __W65__