From f0c6e20787bebe347792998367d0c96fa876d6ce Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Thu, 17 Jul 2025 15:07:35 -0400 Subject: [PATCH] scripts/build_utils: default to gcc-14 for ubuntu noble noble provides both gcc-13 and 14, but its gcc 13.2.0 suffers from an LTO bug that causes ceph daemons to crash horribly (tracked in https://tracker.ceph.com/issues/63867) Signed-off-by: Casey Bodley --- scripts/build_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 885fcd36..2179f299 100755 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -804,7 +804,7 @@ setup_pbuilder_for_old_gcc() { jammy) old=11;; noble) - old=13;; + old=14;; esac setup_gcc_hook $old > $hookdir/D10update-gcc-alternatives chmod +x $hookdir/D10update-gcc-alternatives -- 2.39.5