From f0b9073761362ad8ebebaddfa5edbff50f999ab2 Mon Sep 17 00:00:00 2001 From: Stewart X Addison Date: Mon, 16 Dec 2024 18:32:31 +0000 Subject: [PATCH] Adjust hsdis support to be JDK24+ instead of 20+ Signed-off-by: Stewart X Addison --- build-farm/platform-specific-configurations/linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-farm/platform-specific-configurations/linux.sh b/build-farm/platform-specific-configurations/linux.sh index 289f0d12e..f9d74a24c 100755 --- a/build-farm/platform-specific-configurations/linux.sh +++ b/build-farm/platform-specific-configurations/linux.sh @@ -338,7 +338,7 @@ elif [ -r /usr/bin/gcc-7 ]; then [ -r /usr/bin/g++-7 ] && export CXX=/usr/bin/g++-7 fi -if [ "$JAVA_FEATURE_VERSION" -ge 20 ] && [ "${VARIANT}" == "${BUILD_VARIANT_TEMURIN}" ]; then +if [ "$JAVA_FEATURE_VERSION" -ge 24 ] && [ "${VARIANT}" == "${BUILD_VARIANT_TEMURIN}" ]; then # hsdis+capstone only supported on these two in openjdk if [ "${ARCHITECTURE}" = "x64" ] || [ "${ARCHITECTURE}" = "aarch64" ]; then if [ -r /usr/local/lib/libcapstone.so.4 ]; then