/hg/icedtea7: PR1763: ppc64 JIT doesn't support class data sharing
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Tue May 13 16:36:08 UTC 2014
changeset b7bc434d2b61 in /hg/icedtea7
details: http://icedtea.classpath.org/hg/icedtea7?cmd=changeset;node=b7bc434d2b61
author: Andrew John Hughes <gnu_andrew at member.fsf.org>
date: Tue May 13 17:35:49 2014 +0100
PR1763: ppc64 JIT doesn't support class data sharing
2014-05-13 Andrew John Hughes <gnu.andrew at member.fsf.org>
* Makefile.am:
(add-archive): Skip on ppc64.
(add-archive-debug): Likewise.
(add-archive-boot): Likewise.
* NEWS: Updated.
diffstat:
ChangeLog | 9 +++++++++
Makefile.am | 12 +++++++++---
NEWS | 1 +
3 files changed, 19 insertions(+), 3 deletions(-)
diffs (63 lines):
diff -r 7ae2b1ac339d -r b7bc434d2b61 ChangeLog
--- a/ChangeLog Fri May 09 20:34:40 2014 +0100
+++ b/ChangeLog Tue May 13 17:35:49 2014 +0100
@@ -1,3 +1,12 @@
+2014-05-13 Andrew John Hughes <gnu.andrew at member.fsf.org>
+
+ PR1763: ppc64 JIT doesn't support class data sharing
+ * Makefile.am:
+ (add-archive): Skip on ppc64.
+ (add-archive-debug): Likewise.
+ (add-archive-boot): Likewise.
+ * NEWS: Updated.
+
2014-05-09 Andrew John Hughes <gnu.andrew at member.fsf.org>
PR1762: Undefined references when building with NSS 3.16.1
diff -r 7ae2b1ac339d -r b7bc434d2b61 Makefile.am
--- a/Makefile.am Fri May 09 20:34:40 2014 +0100
+++ b/Makefile.am Tue May 13 17:35:49 2014 +0100
@@ -1829,7 +1829,9 @@
if !ENABLE_CACAO
if !ZERO_BUILD
if [ -e $(BUILD_OUTPUT_DIR)/j2sdk-image/bin/java ] ; then \
- $(BUILD_OUTPUT_DIR)/j2sdk-image/bin/java -Xshare:dump ; \
+ if test "x$(INSTALL_ARCH_DIR)" != "xppc64"; then \
+ $(BUILD_OUTPUT_DIR)/j2sdk-image/bin/java -Xshare:dump ; \
+ fi ; \
fi
endif
endif
@@ -1957,7 +1959,9 @@
if !ENABLE_CACAO
if !ZERO_BUILD
if [ -e $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/bin/java ] ; then \
- $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/bin/java -Xshare:dump ; \
+ if test "x$(INSTALL_ARCH_DIR)" != "xppc64"; then \
+ $(DEBUG_BUILD_OUTPUT_DIR)/j2sdk-image/bin/java -Xshare:dump ; \
+ fi ; \
fi
endif
endif
@@ -2094,7 +2098,9 @@
if !ENABLE_CACAO
if !ZERO_BUILD
if [ -e $(BOOT_BUILD_OUTPUT_DIR)/j2sdk-image/bin/java ] ; then \
- $(BOOT_BUILD_OUTPUT_DIR)/j2sdk-image/bin/java -Xshare:dump ; \
+ if test "x$(INSTALL_ARCH_DIR)" != "xppc64"; then \
+ $(BOOT_BUILD_OUTPUT_DIR)/j2sdk-image/bin/java -Xshare:dump ; \
+ fi ; \
fi
endif
endif
diff -r 7ae2b1ac339d -r b7bc434d2b61 NEWS
--- a/NEWS Fri May 09 20:34:40 2014 +0100
+++ b/NEWS Tue May 13 17:35:49 2014 +0100
@@ -182,6 +182,7 @@
- PR1757: register_method usage in sharkCompiler.cpp needs to be adjusted following S7196199
- Correct placement of S8041658 fix
- PR1762: Undefined references when building with NSS 3.16.1
+ - PR1763: ppc64 JIT doesn't support class data sharing
New in release 2.5.0 (2014-XX-XX):
More information about the distro-pkg-dev
mailing list