Skip to content

Commit

Permalink
build: recommend Xcode 13 or later
Browse files Browse the repository at this point in the history
Change-Id: Id33ea93ccdfa52d3de5c190719f33d6905871870
  • Loading branch information
Pesa committed Jul 13, 2024
1 parent dcb0bb8 commit 78926bd
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 78926bd

Please sign in to comment.