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
a72d1200
Commit
a72d1200
authored
Jul 06, 2018
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
require GCC 6
Meanwhile, GCC 5 fails to compile MPD due to incomplete C++14 implementation.
parent
9a29d02e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
NEWS
NEWS
+1
-1
developer.xml
doc/developer.xml
+1
-1
user.xml
doc/user.xml
+1
-1
Compiler.h
src/Compiler.h
+2
-2
No files found.
NEWS
View file @
a72d1200
...
@@ -30,7 +30,7 @@ ver 0.21 (not yet released)
...
@@ -30,7 +30,7 @@ ver 0.21 (not yet released)
- sndio: new mixer plugin
- sndio: new mixer plugin
* encoder
* encoder
- opus: support for sending metadata using ogg stream chaining
- opus: support for sending metadata using ogg stream chaining
* require GCC
5.0
* require GCC
6
ver 0.20.21 (not yet released)
ver 0.20.21 (not yet released)
* database
* database
...
...
doc/developer.xml
View file @
a72d1200
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
<listitem>
<listitem>
<para>
<para>
the code should be C++14 compliant, and must compile with
the code should be C++14 compliant, and must compile with
<application>
GCC
</application>
5
.0 and
<application>
GCC
</application>
6
.0 and
<application>
clang
</application>
3.4
<application>
clang
</application>
3.4
</para>
</para>
</listitem>
</listitem>
...
...
doc/user.xml
View file @
a72d1200
...
@@ -91,7 +91,7 @@ cd mpd-version</programlisting>
...
@@ -91,7 +91,7 @@ cd mpd-version</programlisting>
<listitem>
<listitem>
<para>
<para>
a C++14 compiler (e.g.
<ulink
a C++14 compiler (e.g.
<ulink
url=
"http://gcc.gnu.org/"
>
gcc
5
.0
</ulink>
or
<ulink
url=
"http://gcc.gnu.org/"
>
gcc
6
.0
</ulink>
or
<ulink
url=
"http://clang.llvm.org/"
>
clang 3.9
</ulink>
)
url=
"http://clang.llvm.org/"
>
clang 3.9
</ulink>
)
</para>
</para>
</listitem>
</listitem>
...
...
src/Compiler.h
View file @
a72d1200
...
@@ -62,8 +62,8 @@
...
@@ -62,8 +62,8 @@
# error Sorry, your clang version is too old. You need at least version 3.1.
# error Sorry, your clang version is too old. You need at least version 3.1.
# endif
# endif
#elif defined(__GNUC__)
#elif defined(__GNUC__)
# if GCC_OLDER_THAN(
5
,0)
# if GCC_OLDER_THAN(
6
,0)
# error Sorry, your gcc version is too old. You need at least version
5
.0.
# error Sorry, your gcc version is too old. You need at least version
6
.0.
# endif
# endif
#else
#else
# warning Untested compiler. Use at your own risk!
# warning Untested compiler. Use at your own risk!
...
...
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