changeset 2714:eb66000601af

PR1758: Support PPC64 JIT on ppc64le 2014-05-01 Andrew John Hughes <gnu.andrew@member.fsf.org> * AUTHORS: Add Tiago. * NEWS: Updated. * acinclude.m4: (IT_SET_ARCH_SETTINGS): Expand ppc64le to its own block to avoid potential future collisions. (IT_ENABLE_ZERO_BUILD): Likewise. 2014-05-01 Tiago Sturmer Daitx <tdaitx@linux.vnet.ibm.com> * acinclude.m4: (IT_SET_ARCH_SETTINGS): Support ppc64le. (IT_ENABLE_ZERO_BUILD): Likewise and use correct host_cpu value for ppc64.
author Andrew John Hughes <gnu_andrew@member.fsf.org>
date Thu, 01 May 2014 22:57:05 +0100
parents 53f3eede6777
children 4f67c07197c3
files AUTHORS ChangeLog NEWS acinclude.m4
diffstat 4 files changed, 26 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/AUTHORS	Thu May 01 20:17:50 2014 +0100
+++ b/AUTHORS	Thu May 01 22:57:05 2014 +0100
@@ -8,6 +8,7 @@
 Deepak Bhole <dbhole@redhat.com>
 Tom Callaway <tcallawa@redhat.com>
 Pablo del Campo <pablogdc@gmail.com>
+Tiago Sturmer Daitx <tdaitx@linux.vnet.ibm.com>
 Thomas Fitzsimmons <fitzsim@redhat.com>
 Matthew Flaschen <matthew.flaschen@gatech.edu>
 Michael Franz <mvfranz@gmail.com>
--- a/ChangeLog	Thu May 01 20:17:50 2014 +0100
+++ b/ChangeLog	Thu May 01 22:57:05 2014 +0100
@@ -1,3 +1,19 @@
+2014-05-01  Andrew John Hughes  <gnu.andrew@member.fsf.org>
+
+	* AUTHORS: Add Tiago.
+	* NEWS: Updated.
+	* acinclude.m4:
+	(IT_SET_ARCH_SETTINGS): Expand ppc64le to its
+	own block to avoid potential future collisions.
+	(IT_ENABLE_ZERO_BUILD): Likewise.
+
+2014-05-01  Tiago Sturmer Daitx  <tdaitx@linux.vnet.ibm.com>
+
+	* acinclude.m4:
+	(IT_SET_ARCH_SETTINGS): Support ppc64le.
+	(IT_ENABLE_ZERO_BUILD): Likewise and use correct
+	host_cpu value for ppc64.
+
 2014-05-01  Andrew John Hughes  <gnu.andrew@member.fsf.org>
 
 	PR1756: Bootstrap with IcedTea broken
--- a/NEWS	Thu May 01 20:17:50 2014 +0100
+++ b/NEWS	Thu May 01 22:57:05 2014 +0100
@@ -162,6 +162,7 @@
   - Extend S8041658 to all files in the HotSpot build.
   - PR1753: Ant does not respect JAVA_HOME/jdk.home setting
   - PR1756: Bootstrap with IcedTea broken
+  - PR1758: Support PPC64 JIT on ppc64le
 
 New in release 2.5.0 (2014-XX-XX):
 
--- a/acinclude.m4	Thu May 01 20:17:50 2014 +0100
+++ b/acinclude.m4	Thu May 01 22:57:05 2014 +0100
@@ -54,6 +54,12 @@
       JRE_ARCH_DIR=ppc64
       ARCHFLAG="-m64"
        ;;
+    powerpc64le)
+      BUILD_ARCH_DIR=ppc64
+      INSTALL_ARCH_DIR=ppc64
+      JRE_ARCH_DIR=ppc64
+      ARCHFLAG="-m64"
+       ;;
     sparc)
       BUILD_ARCH_DIR=sparc
       INSTALL_ARCH_DIR=sparc
@@ -703,7 +709,8 @@
         i?86) ;;
         sparc) ;;
         x86_64) ;;
-	ppc64) ;;
+	powerpc64) ;;
+	powerpc64le) ;;
         *)
           if test "x${ENABLE_CACAO}" != xno || \
 	     test "x${ENABLE_JAMVM}" = xyes; then