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

Commitc1f1362

Browse files
committed
build: require gcc >= 9.1, recommend gcc >= 10.2
Similarly, recommend clang 10 or later. On macOS, the minimum Xcodeversion is now 11, the recommended one is still 13 or later.Change-Id: I08d187deebe56a8b759270c3622af46c471d660d
1 parentf6ea931 commitc1f1362

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

‎.jenkins.d/00-deps.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ APT_PKGS=(
1919
pkg-config
2020
python3
2121
)
22-
FORMULAE=(boost opensslpkg-config)
22+
FORMULAE=(boost opensslpkgconf)
2323
PIP_PKGS=()
2424
case$JOB_NAMEin
2525
*code-coverage)

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

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,27 @@ def configure(conf):
1616
errmsg=''
1717
warnmsg=''
1818
ifcxx=='gcc':
19-
ifccver< (7,4,0):
19+
ifccver< (9,1,0):
2020
errmsg= ('The version of gcc you are using is too old.\n'
21-
'The minimum supported gcc version is9.3.')
22-
elifccver< (9,3,0):
23-
warnmsg= ('Using a version of gcc older than9.3 is not '
21+
'The minimum supported gcc version is10.2.')
22+
elifccver< (10,2,0):
23+
warnmsg= ('Using a version of gcc older than10.2 is not '
2424
'officially supported and may result in build failures.')
2525
conf.flags=GccFlags()
2626
elifcxx=='clang':
2727
ifUtils.unversioned_sys_platform()=='darwin':
28-
ifccver< (10,0,0):
28+
ifccver< (11,0,0):
2929
errmsg= ('The version of Xcode you are using is too old.\n'
3030
'The minimum supported Xcode version is 13.0.')
3131
elifccver< (13,0,0):
3232
warnmsg= ('Using a version of Xcode older than 13.0 is not '
3333
'officially supported and may result in build failures.')
3434
elifccver< (7,0,0):
3535
errmsg= ('The version of clang you are using is too old.\n'
36-
'The minimum supported clang version is 7.0.')
36+
'The minimum supported clang version is 10.0.')
37+
elifccver< (10,0,0):
38+
warnmsg= ('Using a version of clang older than 10.0 is not '
39+
'officially supported and may result in build failures.')
3740
conf.flags=ClangFlags()
3841
else:
3942
warnmsg=f'{cxx} compiler is unsupported'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp