/hg/release/icedtea6-1.7: Add support for zero build on Hitachi SH
doko at icedtea.classpath.org
doko at icedtea.classpath.org
Mon Jan 11 08:39:00 PST 2010
changeset 4ae42f61f6e3 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=4ae42f61f6e3
author: doko at ubuntu.com
date: Mon Jan 11 17:37:11 2010 +0100
Add support for zero build on Hitachi SH
2009-01-11 Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
Matthias Klose <doko at ubuntu.com>
* patches/icedtea-sh4-support.patch: Add zero support for
Hitachi SH.
* Makefile.am (ICEDTEA_PATCHES): Apply the above.
* NEWS: Mention SH support.
diffstat:
4 files changed, 73 insertions(+), 1 deletion(-)
ChangeLog | 7 ++++
Makefile.am | 3 +
NEWS | 1
patches/icedtea-sh4-support.patch | 63 +++++++++++++++++++++++++++++++++++++
diffs (105 lines):
diff -r 3132bad1a11b -r 4ae42f61f6e3 ChangeLog
--- a/ChangeLog Wed Jan 06 17:56:50 2010 -0500
+++ b/ChangeLog Mon Jan 11 17:37:11 2010 +0100
@@ -1,3 +1,10 @@ 2010-01-06 Deepak Bhole <dbhole at redhat.
+2009-01-11 Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
+ Matthias Klose <doko at ubuntu.com>
+
+ * patches/icedtea-sh4-support.patch: Add zero support for Hitachi SH.
+ * Makefile.am (ICEDTEA_PATCHES): Apply the above.
+ * NEWS: Mention SH support.
+
2010-01-06 Deepak Bhole <dbhole at redhat.com>
* configure.ac: Use libxul instead of libxul-unstable for the new NP
diff -r 3132bad1a11b -r 4ae42f61f6e3 Makefile.am
--- a/Makefile.am Wed Jan 06 17:56:50 2010 -0500
+++ b/Makefile.am Mon Jan 11 17:37:11 2010 +0100
@@ -297,7 +297,8 @@ ICEDTEA_PATCHES = \
patches/icedtea-no-precompiled.patch \
patches/icedtea-6897844-xshm.patch \
patches/icedtea-linux-separate-debuginfo.patch \
- patches/icedtea-parisc.patch
+ patches/icedtea-parisc.patch \
+ patches/icedtea-sh4-support.patch
if WITH_RHINO
ICEDTEA_PATCHES += \
diff -r 3132bad1a11b -r 4ae42f61f6e3 NEWS
--- a/NEWS Wed Jan 06 17:56:50 2010 -0500
+++ b/NEWS Mon Jan 11 17:37:11 2010 +0100
@@ -24,6 +24,7 @@ New in release 1.7 (XXXX-XX-XX):
- (CVE-2009-3869) JRE AWT setDifflCM stack overflow (6872357)
- (CVE-2009-3874) ImageI/O JPEG heap overflow (6874643
- (CVE-2009-3871) JRE AWT setBytePixels heap overflow (6872358)
+- Add support for zero build on Hitachi SH.
New in release 1.6 (2009-09-10):
diff -r 3132bad1a11b -r 4ae42f61f6e3 patches/icedtea-sh4-support.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-sh4-support.patch Mon Jan 11 17:37:11 2010 +0100
@@ -0,0 +1,63 @@
+--- openjdk/hotspot/src/os/linux/vm/os_linux.cpp 2009-12-24 14:56:12.000000000 +0900
++++ openjdk/hotspot/src/os/linux/vm/os_linux.cpp 2009-12-24 15:02:51.000000000 +0900
+@@ -1753,7 +1753,8 @@
+ {EM_MIPS_RS3_LE, EM_MIPS_RS3_LE, ELFCLASS32, ELFDATA2LSB, (char*)"MIPSel"},
+ {EM_MIPS, EM_MIPS, ELFCLASS32, ELFDATA2MSB, (char*)"MIPS"},
+ {EM_PARISC, EM_PARISC, ELFCLASS32, ELFDATA2MSB, (char*)"PARISC"},
+- {EM_68K, EM_68K, ELFCLASS32, ELFDATA2MSB, (char*)"M68k"}
++ {EM_68K, EM_68K, ELFCLASS32, ELFDATA2MSB, (char*)"M68k"},
++ {EM_SH, EM_SH, ELFCLASS32, ELFDATA2LSB, (char*)"SH"} /* Support little endian only*/
+ };
+
+ #if (defined IA32)
+@@ -1784,9 +1785,11 @@
+ static Elf32_Half running_arch_code=EM_MIPS;
+ #elif (defined M68K)
+ static Elf32_Half running_arch_code=EM_68K;
++ #elif (defined SH)
++ static Elf32_Half running_arch_code=EM_SH;
+ #else
+ #error Method os::dll_load requires that one of following is defined:\
+- IA32, AMD64, IA64, __sparc, __powerpc__, ARM, S390, ALPHA, MIPS, MIPSEL, PARISC, M68K
++ IA32, AMD64, IA64, __sparc, __powerpc__, ARM, S390, ALPHA, MIPS, MIPSEL, PARISC, M68K, SH
+ #endif
+
+ // Identify compatability class for VM's architecture and library's architecture
+--- openjdk/jdk/src/share/native/com/sun/media/sound/SoundDefs.h 2009-12-24 14:56:10.000000000 +0900
++++ openjdk/jdk/src/share/native/com/sun/media/sound/SoundDefs.h 2009-12-24 15:05:27.000000000 +0900
+@@ -47,7 +47,8 @@
+ #define X_S390X 12
+ #define X_SPARC 13
+ #define X_SPARCV9 14
+-#define X_ZERO 15
++#define X_SH 15
++#define X_ZERO 16
+
+ // **********************************
+ // Make sure you set X_PLATFORM and X_ARCH defines correctly.
+--- openjdk/jdk/make/common/shared/Compiler-gcc.gmk 2009-12-24 15:11:52.000000000 +0900
++++ openjdk/jdk/make/common/shared/Compiler-gcc.gmk 2009-12-24 15:12:17.000000000 +0900
+@@ -121,6 +121,11 @@
+ REQUIRED_CC_VER = 4.0
+ REQUIRED_GCC_VER = 4.0.*
+ endif
++ ifneq ("$(findstring sh,$(ARCH))", "")
++ # sh4*, sh3*
++ REQUIRED_CC_VER = 4.0
++ REQUIRED_GCC_VER = 4.0.*
++ endif
+ # Option used to create a shared library
+ SHARED_LIBRARY_FLAG = -shared -mimpure-text
+ SUN_COMP_VER := $(shell $(CC) --verbose 2>&1 )
+--- openjdk/corba/make/common/shared/Platform.gmk 2009-12-24 21:30:38.000000000 +0900
++++ openjdk/corba/make/common/shared/Platform.gmk 2009-12-25 10:17:14.000000000 +0900
+@@ -263,6 +263,9 @@
+ ifeq ($(ARCH), s390x)
+ ARCH_DATA_MODEL=64
+ endif
++ ifeq ($(ARCH), sh)
++ ARCH_DATA_MODEL=32
++ endif
+ endif
+ endif
+
More information about the distro-pkg-dev
mailing list