From e7110c0bebb6baa917b45ffe6086c1a8c8dc3f73 Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Sun, 25 May 2025 19:56:59 +0200 Subject: [PATCH] macos: tools: configure: use GCC 15 Matches updated GCC Homebrew formula: https://formulae.brew.sh/formula/gcc Change-Id: I9b8e66a16ccfaf840fd50bbe313cae33e44d4f11 --- tools/configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/configure b/tools/configure index 358679054e..95e7b88d64 100755 --- a/tools/configure +++ b/tools/configure @@ -393,9 +393,9 @@ simcc () { sigaltstack=`check_sigaltstack` echo "Darwin host detected" if $CC --version | grep -q "clang"; then - CC=gcc-14 - AR=gcc-ar-14 - CPP=cpp-14 + CC=gcc-15 + AR=gcc-ar-15 + CPP=cpp-15 fi LDOPTS="$LDOPTS -ldl" SHARED_LDFLAGS="-dynamiclib -Wl,-no_warn_duplicate_libraries"