/hg/release/icedtea6-1.11: 4 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Mon Jan 20 10:27:02 PST 2014
changeset 38e2c5cb8310 in /hg/release/icedtea6-1.11
details: http://icedtea.classpath.org/hg/release/icedtea6-1.11?cmd=changeset;node=38e2c5cb8310
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Thu Sep 19 16:58:11 2013 +0100
Fail if a C++ compiler is not installed.
2013-09-19 Andrew John Hughes <gnu.andrew at redhat.com>
* configure.ac:
Check if CXX gets set and fail if not.
changeset c9ac092141ed in /hg/release/icedtea6-1.11
details: http://icedtea.classpath.org/hg/release/icedtea6-1.11?cmd=changeset;node=c9ac092141ed
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Thu Sep 19 17:00:58 2013 +0100
Also fail if the C compiler is not found.
2013-09-19 Andrew John Hughes <gnu.andrew at redhat.com>
* configure.ac:
Check if CC gets set and fail if not.
changeset cb0efad69ad3 in /hg/release/icedtea6-1.11
details: http://icedtea.classpath.org/hg/release/icedtea6-1.11?cmd=changeset;node=cb0efad69ad3
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Mon Jan 20 18:08:49 2014 +0000
D729448: 32-bit alignment on mips and mipsel
2013-11-21 Andrew John Hughes <gnu.andrew at redhat.com>
* Makefile.am:
(ICEDTEA_PATCHES): Add new patch.
* patches/d729448-32_bit_alignment.patch:
Fix alignment on mips and mipsel.
changeset a083335563ec in /hg/release/icedtea6-1.11
details: http://icedtea.classpath.org/hg/release/icedtea6-1.11?cmd=changeset;node=a083335563ec
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Mon Jan 20 18:26:44 2014 +0000
8027837: Generate CORBA sources before building code that depends on it.
2014-01-20 Andrew John Hughes <gnu.andrew at redhat.com>
* Makefile.am:
(ICEDTEA_PATCHES): Add new patch.
* patches/openjdk/8027837-corba_build_dependency.patch:
Generate sources before building code that depends
on them.
diffstat:
ChangeLog | 25 ++++++++++
Makefile.am | 4 +-
configure.ac | 7 ++
patches/d729448-32_bit_alignment.patch | 47 ++++++++++++++++++++
patches/openjdk/8027837-corba_build_dependency.patch | 21 ++++++++
5 files changed, 103 insertions(+), 1 deletions(-)
diffs (140 lines):
diff -r c982036ea4b3 -r a083335563ec ChangeLog
--- a/ChangeLog Mon Jan 20 08:52:16 2014 +0000
+++ b/ChangeLog Mon Jan 20 18:26:44 2014 +0000
@@ -1,3 +1,28 @@
+2014-01-20 Andrew John Hughes <gnu.andrew at redhat.com>
+
+ * Makefile.am:
+ (ICEDTEA_PATCHES): Add new patch.
+ * patches/openjdk/8027837-corba_build_dependency.patch:
+ Generate sources before building code that depends
+ on them.
+
+2013-11-21 Andrew John Hughes <gnu.andrew at redhat.com>
+
+ * Makefile.am:
+ (ICEDTEA_PATCHES): Add new patch.
+ * patches/d729448-32_bit_alignment.patch:
+ Fix alignment on mips and mipsel.
+
+2013-09-19 Andrew John Hughes <gnu.andrew at redhat.com>
+
+ * configure.ac:
+ Check if CC gets set and fail if not.
+
+2013-09-19 Andrew John Hughes <gnu.andrew at redhat.com>
+
+ * configure.ac:
+ Check if CXX gets set and fail if not.
+
2013-08-28 Andrew John Hughes <gnu.andrew at redhat.com>
* Makefile.am:
diff -r c982036ea4b3 -r a083335563ec Makefile.am
--- a/Makefile.am Mon Jan 20 08:52:16 2014 +0000
+++ b/Makefile.am Mon Jan 20 18:26:44 2014 +0000
@@ -813,7 +813,9 @@
patches/openjdk/6980681-corba_deadlock.patch \
patches/openjdk/7162902-corba_fixes.patch \
patches/traceable.patch \
- patches/openjdk/6893617-cnctx_always_uses_default_orb.patch
+ patches/openjdk/6893617-cnctx_always_uses_default_orb.patch \
+ patches/d729448-32_bit_alignment.patch \
+ patches/openjdk/8027837-corba_build_dependency.patch
if WITH_RHINO
ICEDTEA_PATCHES += \
diff -r c982036ea4b3 -r a083335563ec configure.ac
--- a/configure.ac Mon Jan 20 08:52:16 2014 +0000
+++ b/configure.ac Mon Jan 20 18:26:44 2014 +0000
@@ -16,7 +16,14 @@
AC_PREFIX_DEFAULT([bootstrap])
AC_PROG_CC
+if test "x$CC" = x; then
+ AC_MSG_ERROR([No C compiler found.])
+fi
+
AC_PROG_CXX
+if test "x$CXX" = x; then
+ AC_MSG_ERROR([No C++ compiler found.])
+fi
IT_FIND_TOOL([MAKE], [make])
IT_FIND_TOOL([GZIP], [gzip])
diff -r c982036ea4b3 -r a083335563ec patches/d729448-32_bit_alignment.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/d729448-32_bit_alignment.patch Mon Jan 20 18:26:44 2014 +0000
@@ -0,0 +1,47 @@
+# HG changeset patch
+# User andrew
+# Date 1384967615 0
+# Wed Nov 20 17:13:35 2013 +0000
+# Node ID 05b64403a1917ddd9e0dd3880a5707e083ed9aba
+# Parent 9d01164b2dfc36fb13984cb0854b2c7a9e4dbfbe
+D729448: 32-bit alignment on mips and mipsel
+
+diff -r 9d01164b2dfc -r 05b64403a191 src/share/vm/interpreter/bytecodeInterpreter.hpp
+--- openjdk/hotspot/src/share/vm/interpreter/bytecodeInterpreter.hpp Tue Nov 12 17:58:35 2013 +0000
++++ openjdk/hotspot/src/share/vm/interpreter/bytecodeInterpreter.hpp Wed Nov 20 17:13:35 2013 +0000
+@@ -60,7 +60,16 @@
+ jlong l;
+ jdouble d;
+ uint32_t v[2];
+-};
++}
++#ifndef _LP64
++ /* Hotspot only aligns the union to the uintptr_t type, that is 32 bit
++ on a 32-bit CPU. Accesses to double values should be 64-bit aligned
++ on at least MIPS and SPARC. Declare it to GCC for all 32-bit CPUs,
++ as it might also help GCC to select the best instruction on other
++ CPUs. */
++ __attribute__ ((packed, aligned (4)))
++#endif
++;
+
+
+ typedef class BytecodeInterpreter* interpreterState;
+@@ -172,7 +181,16 @@
+ jlong l;
+ jdouble d;
+ uint32_t v[2];
+-};
++}
++#ifndef _LP64
++ /* Hotspot only aligns the union to the uintptr_t type, that is 32 bit
++ on a 32-bit CPU. Accesses to double values should be 64-bit aligned
++ on at least MIPS and SPARC. Declare it to GCC for all 32-bit CPUs,
++ as it might also help GCC to select the best instruction on other
++ CPUs. */
++ __attribute__ ((packed, aligned (4)))
++#endif
++;
+
+ /*
+ * Generic 32-bit wide "Java slot" definition. This type occurs
diff -r c982036ea4b3 -r a083335563ec patches/openjdk/8027837-corba_build_dependency.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/openjdk/8027837-corba_build_dependency.patch Mon Jan 20 18:26:44 2014 +0000
@@ -0,0 +1,21 @@
+# HG changeset patch
+# User coffeys
+# Date 1384185131 0
+# Mon Nov 11 15:52:11 2013 +0000
+# Node ID c93c49524d58fd6f38b07db2a54fc644c1327a5f
+# Parent 295b9963b97f12c43209dbe212b475e835f0a7d0
+8027837: JDK-8021257 causes CORBA build failure on emdedded platforms
+Reviewed-by: dholmes
+
+diff -r 295b9963b97f -r c93c49524d58 make/Makefile
+--- openjdk/corba/make/Makefile Fri Jan 17 23:21:27 2014 +0000
++++ openjdk/corba/make/Makefile Mon Nov 11 15:52:11 2013 +0000
+@@ -158,7 +158,7 @@
+ #
+ # CORBA
+ #
+-SUBDIRS = tools javax org sun com
++SUBDIRS = tools sun/rmi javax org sun com
+
+ build:
+ $(SUBDIRS-loop)
More information about the distro-pkg-dev
mailing list