Skip to content

Commit

Permalink
build: recommend Xcode 13 or later
Browse files Browse the repository at this point in the history
Change-Id: I1d914014a9cd83baa137d5372a1a494f8502b58e
  • Loading branch information
Pesa committed Jul 13, 2024
1 parent 2907a29 commit 27b7092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .waf-tools/default-compiler-flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 27b7092

Please sign in to comment.