From 78926bd43bbc3c7bb0e1f4099da7fa49b7222e3c Mon Sep 17 00:00:00 2001 From: Davide Pesavento Date: Sat, 13 Jul 2024 17:21:26 -0400 Subject: [PATCH] build: recommend Xcode 13 or later Change-Id: Id33ea93ccdfa52d3de5c190719f33d6905871870 --- .waf-tools/default-compiler-flags.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.waf-tools/default-compiler-flags.py b/.waf-tools/default-compiler-flags.py index 39b3025..e412692 100644 --- a/.waf-tools/default-compiler-flags.py +++ b/.waf-tools/default-compiler-flags.py @@ -27,9 +27,9 @@ def configure(conf): if Utils.unversioned_sys_platform() == 'darwin': if ccver < (10, 0, 0): errmsg = ('The version of Xcode you are using is too old.\n' - 'The minimum supported Xcode version is 12.4.') - elif ccver < (12, 0, 0): - warnmsg = ('Using a version of Xcode older than 12.4 is not ' + 'The minimum supported Xcode version is 13.0.') + elif ccver < (13, 0, 0): + warnmsg = ('Using a version of Xcode older than 13.0 is not ' 'officially supported and may result in build failures.') elif ccver < (7, 0, 0): errmsg = ('The version of clang you are using is too old.\n'