From d230a685e8a5036ef63f52d95a736c6c1a94b092 Mon Sep 17 00:00:00 2001 From: peng_zou Date: Tue, 25 Jun 2024 17:24:04 +0800 Subject: [PATCH] Add support for ppc64le --- openjdk-latest.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/openjdk-latest.spec b/openjdk-latest.spec index 7619d55..eaeb9cb 100644 --- a/openjdk-latest.spec +++ b/openjdk-latest.spec @@ -72,7 +72,7 @@ %global is_system_jdk 0 %global aarch64 aarch64 arm64 armv8 -%global jit_arches x86_64 %{aarch64} riscv64 loongarch64 +%global jit_arches x86_64 %{aarch64} riscv64 loongarch64 ppc64le %global aot_arches x86_64 %{aarch64} # Set of architectures for which java has short vector math library (libsvml.so) @@ -898,7 +898,7 @@ Name: java-latest-%{origin} Version: %{newjavaver}.%{buildver} # This package needs `.rolling` as part of Release so as to not conflict on install with # java-X-openjdk. I.e. when latest rolling release is also an LTS release packaged as -Release: 1 +Release: 2 # java-1.5.0-ibm from jpackage.org set Epoch to 1 for unknown reasons # and this change was brought into RHEL-4. java-1.5.0-ibm packages @@ -1353,6 +1353,8 @@ elif [ "$ARCH" = "riscv64" ]; then : elif [ "$ARCH" = "loongarch64" ]; then : +elif [ "$ARCH" = "ppc64le" ]; then + : else echo " Failed to set BOOTJDKPATH " exit 18 @@ -1808,6 +1810,9 @@ cjc.mainProgram(arg) %changelog +* Tue Jun 25 2024 peng.zou - 1:21.0.0.36-2 +- Add support for ppc64le + * Fri Jun 21 2024 aoqi - 1:22.0.0.36-1 - update to jdk22+36 for loongarch64 -- Gitee