Skip to content

Commit

Permalink
Adjust hsdis support to be JDK24+ instead of 20+
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart X Addison <[email protected]>
  • Loading branch information
sxa committed Dec 16, 2024
1 parent 2c84718 commit f0b9073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-farm/platform-specific-configurations/linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f0b9073

Please sign in to comment.