Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
02502514
Commit
02502514
authored
May 25, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
meson.build: require clang 7 (remove bug workaround)
parent
1bc02123
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
+3
-9
user.rst
doc/user.rst
+1
-1
meson.build
meson.build
+2
-8
No files found.
doc/user.rst
View file @
02502514
...
...
@@ -55,7 +55,7 @@ and unpack it (or `clone the git repository
In
any
case
,
you
need
:
*
a
C
++
17
compiler
(
e
.
g
.
GCC
8
or
clang
5
)
*
a
C
++
17
compiler
(
e
.
g
.
GCC
8
or
clang
7
)
*
`
Meson
0.49.0
<
http
://
mesonbuild
.
com
/>`
__
and
`
Ninja
<
https
://
ninja
-
build
.
org
/>`
__
*
Boost
1.58
...
...
meson.build
View file @
02502514
...
...
@@ -24,8 +24,8 @@ c_compiler = meson.get_compiler('c')
if compiler.get_id() == 'gcc' and compiler.version().version_compare('<8')
warning('Your GCC version is too old. You need at least version 8.')
elif compiler.get_id() == 'clang' and compiler.version().version_compare('<
5
')
warning('Your clang version is too old. You need at least version
5
.')
elif compiler.get_id() == 'clang' and compiler.version().version_compare('<
7
')
warning('Your clang version is too old. You need at least version
7
.')
endif
version_conf = configuration_data()
...
...
@@ -79,12 +79,6 @@ test_cxxflags = test_common_flags + [
'-Wno-non-virtual-dtor',
]
if compiler.get_id() == 'clang'
# Workaround for clang bug
# https://bugs.llvm.org/show_bug.cgi?id=32611
test_cxxflags += '-funwind-tables'
endif
test_cflags = test_common_flags + [
'-Wmissing-prototypes',
'-Wshadow',
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment