From f3653399802a193d59ac390dd407f21c388eef98 Mon Sep 17 00:00:00 2001 From: EvilOlaf Date: Thu, 17 Apr 2025 16:02:03 +0000 Subject: [PATCH] add new host build dependency for noble --- lib/functions/host/prepare-host.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/functions/host/prepare-host.sh b/lib/functions/host/prepare-host.sh index 67089ee062..54dca2c74d 100644 --- a/lib/functions/host/prepare-host.sh +++ b/lib/functions/host/prepare-host.sh @@ -236,6 +236,11 @@ function adaptative_prepare_host_dependencies() { display_alert "Python2 not available on host release '${host_release}'" "ancient u-boot versions might/will fail to build" "info" fi + # Noble lacks gcc-arm-linux-gnueabi for unknown reason causing ATF compile to fail + if [[ "noble" == *"${host_release}"* ]]; then + host_dependencies+=("gcc-arm-linux-gnueabi") + fi + # Only install acng if asked to. if [[ "${MANAGE_ACNG}" == "yes" ]]; then host_dependencies+=("apt-cacher-ng")