Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit60b52cf

Browse files
committed
build: align minimum build requirements with ndn-cxx
Change-Id: I6935947db720b324f45422099e46ea8ff39d7532
1 parent0fa5eff commit60b52cf

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

‎.jenkins‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ if [[ $JOB_NAME == *"code-coverage" ]]; then
3232
export DISABLE_HEADERS_CHECK=yes
3333
fi
3434

35+
# https://reproducible-builds.org/docs/source-date-epoch/
36+
export SOURCE_DATE_EPOCH=$(git log -1 --format=%ct)
37+
3538
forfilein .jenkins.d/*;do
3639
[[-f$file&&-x$file ]]||continue
3740

‎.waf-tools/default-compiler-flags.py‎

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,22 @@ def configure(conf):
1818
ifcxx=='gcc':
1919
ifccver< (7,4,0):
2020
errmsg= ('The version of gcc you are using is too old.\n'
21-
'The minimum supported gcc version is 7.4.')
21+
'The minimum supported gcc version is 9.3.')
22+
elifccver< (9,3,0):
23+
warnmsg= ('Using a version of gcc older than 9.3 is not '
24+
'officially supported and may result in build failures.')
2225
conf.flags=GccFlags()
2326
elifcxx=='clang':
2427
ifUtils.unversioned_sys_platform()=='darwin':
2528
ifccver< (10,0,0):
2629
errmsg= ('The version of Xcode you are using is too old.\n'
27-
'The minimum supported Xcode version is11.3.')
28-
elifccver< (11,0,0):
29-
warnmsg= ('Using a version of Xcode older than11.3 is not '
30+
'The minimum supported Xcode version is12.4.')
31+
elifccver< (12,0,0):
32+
warnmsg= ('Using a version of Xcode older than12.4 is not '
3033
'officially supported and may result in build failures.')
31-
elifccver< (6,0,0):
34+
elifccver< (7,0,0):
3235
errmsg= ('The version of clang you are using is too old.\n'
33-
'The minimum supported clang version is6.0.')
36+
'The minimum supported clang version is7.0.')
3437
conf.flags=ClangFlags()
3538
else:
3639
warnmsg=f'{cxx} compiler is unsupported'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp