From d1252b5fa4d1319d4f9ca66040cf8ae5009af286 Mon Sep 17 00:00:00 2001 From: George Adams Date: Thu, 22 Aug 2024 12:53:08 +0100 Subject: [PATCH] only specific --openjdk-target when cross compiling --- build-farm/platform-specific-configurations/mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-farm/platform-specific-configurations/mac.sh b/build-farm/platform-specific-configurations/mac.sh index 4fe9d8744..248842196 100755 --- a/build-farm/platform-specific-configurations/mac.sh +++ b/build-farm/platform-specific-configurations/mac.sh @@ -70,7 +70,7 @@ else if [ "${ARCHITECTURE}" == "x64" ]; then # We can only target 10.9 on intel macs export cxx_flags_bucket="${cxx_flags_bucket} -mmacosx-version-min=10.9" - elif [ "${ARCHITECTURE}" == "aarch64" ]; then + elif [[ "${MACHINEARCHITECTURE}" == "x64" ]] && [[ "${ARCHITECTURE}" == "aarch64" ]]; then export CONFIGURE_ARGS_FOR_ANY_PLATFORM="${CONFIGURE_ARGS_FOR_ANY_PLATFORM} --openjdk-target=aarch64-apple-darwin" fi fi