/hg/release/icedtea7-forest-2.4/corba: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Tue Jan 28 02:54:44 PST 2014


changeset adc241d706d6 in /hg/release/icedtea7-forest-2.4/corba
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.4/corba?cmd=changeset;node=adc241d706d6
author: andrew
date: Thu Jan 23 22:40:30 2014 +0000

	PR1653: Support ppc64le via Zero


changeset 3594dbde270d in /hg/release/icedtea7-forest-2.4/corba
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.4/corba?cmd=changeset;node=3594dbde270d
author: andrew
date: Thu Jan 23 23:19:18 2014 +0000

	PR1654: ppc32 needs a larger ThreadStackSize to build


diffstat:

 make/common/shared/Defs-java.gmk |  6 +++++-
 make/common/shared/Platform.gmk  |  2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r 721b1070efda -r 3594dbde270d make/common/shared/Defs-java.gmk
--- a/make/common/shared/Defs-java.gmk	Fri Jan 17 20:22:44 2014 +0000
+++ b/make/common/shared/Defs-java.gmk	Thu Jan 23 23:19:18 2014 +0000
@@ -79,7 +79,11 @@
 
 # 64-bit builds require a larger thread stack size.
 ifeq ($(ARCH_DATA_MODEL), 32)
-  JAVAC_JVM_FLAGS    += -J-XX:ThreadStackSize=768
+  ifeq ($(ARCH), ppc)
+    JAVAC_JVM_FLAGS    += -J-XX:ThreadStackSize=1152
+  else
+    JAVAC_JVM_FLAGS    += -J-XX:ThreadStackSize=768
+  endif
 else
   JAVAC_JVM_FLAGS    += -J-XX:ThreadStackSize=1664
 endif
diff -r 721b1070efda -r 3594dbde270d make/common/shared/Platform.gmk
--- a/make/common/shared/Platform.gmk	Fri Jan 17 20:22:44 2014 +0000
+++ b/make/common/shared/Platform.gmk	Thu Jan 23 23:19:18 2014 +0000
@@ -154,7 +154,7 @@
   # Arch and OS name/version
   mach := $(shell uname -m)
   ifneq (,$(wildcard /usr/bin/dpkg-architecture))
-    mach := $(shell (dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null || echo $(mach)) | sed 's/arm64/aarch64/;s/powerpc$$/ppc/;s/hppa/parisc/')
+    mach := $(shell (dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null || echo $(mach)) | sed 's/arm64/aarch64/;s/powerpc$$/ppc/;s/hppa/parisc/;s/ppc64el/ppc64le/')
   endif
   archExpr = case "$(mach)" in \
                 i[3-9]86) \


More information about the distro-pkg-dev mailing list