build: align minimum build requirements with ndn-cxx
Change-Id: I3aac15aa09e9dbd8ad666fe91e4a536a152ee0df
This commit is contained in:
@@ -32,6 +32,9 @@ if [[ $JOB_NAME == *"code-coverage" ]]; then
|
|||||||
export DISABLE_HEADERS_CHECK=yes
|
export DISABLE_HEADERS_CHECK=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# https://reproducible-builds.org/docs/source-date-epoch/
|
||||||
|
export SOURCE_DATE_EPOCH=$(git log -1 --format=%ct)
|
||||||
|
|
||||||
for file in .jenkins.d/*; do
|
for file in .jenkins.d/*; do
|
||||||
[[ -f $file && -x $file ]] || continue
|
[[ -f $file && -x $file ]] || continue
|
||||||
|
|
||||||
|
|||||||
@@ -18,19 +18,22 @@ def configure(conf):
|
|||||||
if cxx == 'gcc':
|
if cxx == 'gcc':
|
||||||
if ccver < (7, 4, 0):
|
if ccver < (7, 4, 0):
|
||||||
errmsg = ('The version of gcc you are using is too old.\n'
|
errmsg = ('The version of gcc you are using is too old.\n'
|
||||||
'The minimum supported gcc version is 7.4.')
|
'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 '
|
||||||
|
'officially supported and may result in build failures.')
|
||||||
conf.flags = GccFlags()
|
conf.flags = GccFlags()
|
||||||
elif cxx == 'clang':
|
elif cxx == 'clang':
|
||||||
if Utils.unversioned_sys_platform() == 'darwin':
|
if Utils.unversioned_sys_platform() == 'darwin':
|
||||||
if ccver < (10, 0, 0):
|
if ccver < (10, 0, 0):
|
||||||
errmsg = ('The version of Xcode you are using is too old.\n'
|
errmsg = ('The version of Xcode you are using is too old.\n'
|
||||||
'The minimum supported Xcode version is 11.3.')
|
'The minimum supported Xcode version is 12.4.')
|
||||||
elif ccver < (11, 0, 0):
|
elif ccver < (12, 0, 0):
|
||||||
warnmsg = ('Using a version of Xcode older than 11.3 is not '
|
warnmsg = ('Using a version of Xcode older than 12.4 is not '
|
||||||
'officially supported and may result in build failures.')
|
'officially supported and may result in build failures.')
|
||||||
elif ccver < (6, 0, 0):
|
elif ccver < (7, 0, 0):
|
||||||
errmsg = ('The version of clang you are using is too old.\n'
|
errmsg = ('The version of clang you are using is too old.\n'
|
||||||
'The minimum supported clang version is 6.0.')
|
'The minimum supported clang version is 7.0.')
|
||||||
conf.flags = ClangFlags()
|
conf.flags = ClangFlags()
|
||||||
else:
|
else:
|
||||||
warnmsg = f'{cxx} compiler is unsupported'
|
warnmsg = f'{cxx} compiler is unsupported'
|
||||||
|
|||||||
Reference in New Issue
Block a user