Skip to content

Commit

Permalink
build: require gcc >= 9.1, recommend gcc >= 10.2
Browse files Browse the repository at this point in the history
Similarly, recommend clang 10 or later. On macOS, the minimum Xcode
version is now 11, the recommended one is still 13 or later.

Change-Id: Id4dd3007b62f23e7c5ce57b2764debc5eeab98f1
  • Loading branch information
Pesa committed Dec 11, 2024
1 parent 914eb28 commit 2073dce
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
15 changes: 9 additions & 6 deletions .waf-tools/default-compiler-flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,27 @@ def configure(conf):
errmsg = ''
warnmsg = ''
if cxx == 'gcc':
if ccver < (7, 4, 0):
if ccver < (9, 1, 0):
errmsg = ('The version of gcc you are using is too old.\n'
'The minimum supported gcc version is 9.3.')
elif ccver < (9, 3, 0):
warnmsg = ('Using a version of gcc older than 9.3 is not '
'The minimum supported gcc version is 10.2.')
elif ccver < (10, 2, 0):
warnmsg = ('Using a version of gcc older than 10.2 is not '
'officially supported and may result in build failures.')
conf.flags = GccFlags()
elif cxx == 'clang':
if Utils.unversioned_sys_platform() == 'darwin':
if ccver < (10, 0, 0):
if ccver < (11, 0, 0):
errmsg = ('The version of Xcode you are using is too old.\n'
'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'
'The minimum supported clang version is 7.0.')
'The minimum supported clang version is 10.0.')
elif ccver < (10, 0, 0):
warnmsg = ('Using a version of clang older than 10.0 is not '
'officially supported and may result in build failures.')
conf.flags = ClangFlags()
else:
warnmsg = f'{cxx} compiler is unsupported'
Expand Down
9 changes: 4 additions & 5 deletions docs/INSTALL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,21 @@ Supported platforms
NFD is built against a continuous integration system and has been tested on the
following platforms:

- Ubuntu 20.04 (focal)
- Ubuntu 22.04 (jammy)
- Ubuntu 24.04 (noble)
- Debian 11 (bullseye)
- Debian 12 (bookworm)
- CentOS Stream 9
- macOS 12 / 13 / 14 / 15
- macOS 13 / 14 / 15

NFD should also work on the following platforms, although they are not officially
supported:

- Any other recent version of Ubuntu not listed above
- Fedora >= 33
- Alpine >= 3.12
- Fedora >= 34
- Alpine >= 3.14
- Any version of Raspberry Pi OS based on Debian 11 (bullseye) or later
- macOS >= 10.15
- macOS >= 11
- FreeBSD >= 12.2

.. _Install NFD on Ubuntu Linux using the NDN PPA repository:
Expand Down

0 comments on commit 2073dce

Please sign in to comment.