From a0d9793526b13820b56779d22b5b245b8f467d34 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 2 May 2025 10:16:29 +0000 Subject: [PATCH] pam: Fix build with GCC 15 on aarch64 Signed-off-by: Michael Tremer --- lfs/pam | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lfs/pam b/lfs/pam index 8f3d144f8..b2847d0a6 100644 --- a/lfs/pam +++ b/lfs/pam @@ -32,6 +32,11 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +# Don't fail on any linker warnings +# I don't actually know why this has suddenly come up as it is a linker issue, +# however, this all started with the update to GCC 15 and happens on aarch64. +CFLAGS += -Wl,--no-fatal-warnings + ############################################################################### # Top-level Rules ############################################################################### -- 2.39.5