Skip to content

Commit

Permalink
build: recommend Xcode 13 or later
Browse files Browse the repository at this point in the history
Change-Id: Iff44fe2b1b0f8156660f173e9bf6a4399303c75f
  • Loading branch information
Pesa committed Jun 7, 2024
1 parent 81c3c64 commit 5b71cfa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ COPY --link --from=build /usr/bin/ndndump /usr/bin/
COPY --link --from=build /usr/bin/ndn-dissect /usr/bin/

RUN --mount=from=build,source=/deps,target=/deps \
apt-get install -Uy --no-install-recommends $(cat /deps/ndn*) \
apt-get install -Uy --no-install-recommends \
$(cat /deps/ndn*) \
&& apt-get distclean

ENV HOME=/config
Expand Down

0 comments on commit 5b71cfa

Please sign in to comment.