Compiler.h: add macro CLANG_OR_GCC_VERSION()
This commit is contained in:
parent
25429af122
commit
d93172bee8
@ -31,6 +31,13 @@
|
|||||||
#define GCC_CHECK_VERSION(major, minor) \
|
#define GCC_CHECK_VERSION(major, minor) \
|
||||||
(defined(__GNUC__) && GCC_VERSION >= GCC_MAKE_VERSION(major, minor, 0))
|
(defined(__GNUC__) && GCC_VERSION >= GCC_MAKE_VERSION(major, minor, 0))
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Are we building with clang (any version) or at least the specified
|
||||||
|
* gcc version?
|
||||||
|
*/
|
||||||
|
#define CLANG_OR_GCC_VERSION(major, minor) \
|
||||||
|
(defined(__clang__) || GCC_CHECK_VERSION(major, minor))
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Are we building with gcc (not clang or any other compiler) and a
|
* Are we building with gcc (not clang or any other compiler) and a
|
||||||
* version older than the specified one?
|
* version older than the specified one?
|
||||||
@ -52,7 +59,7 @@
|
|||||||
# warning Untested compiler. Use at your own risk!
|
# warning Untested compiler. Use at your own risk!
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if GCC_CHECK_VERSION(4,0)
|
#if CLANG_OR_GCC_VERSION(4,0)
|
||||||
|
|
||||||
/* GCC 4.x */
|
/* GCC 4.x */
|
||||||
|
|
||||||
@ -112,7 +119,7 @@
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if GCC_CHECK_VERSION(4,3)
|
#if CLANG_OR_GCC_VERSION(4,3)
|
||||||
|
|
||||||
#define gcc_hot __attribute__((hot))
|
#define gcc_hot __attribute__((hot))
|
||||||
#define gcc_cold __attribute__((cold))
|
#define gcc_cold __attribute__((cold))
|
||||||
@ -133,7 +140,7 @@
|
|||||||
#ifndef __cplusplus
|
#ifndef __cplusplus
|
||||||
/* plain C99 has "restrict" */
|
/* plain C99 has "restrict" */
|
||||||
#define gcc_restrict restrict
|
#define gcc_restrict restrict
|
||||||
#elif GCC_CHECK_VERSION(4,0)
|
#elif CLANG_OR_GCC_VERSION(4,0)
|
||||||
/* "__restrict__" is a GCC extension for C++ */
|
/* "__restrict__" is a GCC extension for C++ */
|
||||||
#define gcc_restrict __restrict__
|
#define gcc_restrict __restrict__
|
||||||
#else
|
#else
|
||||||
@ -151,7 +158,7 @@
|
|||||||
#define final
|
#define final
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
#if CLANG_OR_GCC_VERSION(4,8)
|
||||||
#define gcc_alignas(T, fallback) alignas(T)
|
#define gcc_alignas(T, fallback) alignas(T)
|
||||||
#else
|
#else
|
||||||
#define gcc_alignas(T, fallback) gcc_aligned(fallback)
|
#define gcc_alignas(T, fallback) gcc_aligned(fallback)
|
||||||
|
@ -46,7 +46,7 @@ StatsVisitTag(DatabaseStats &stats, StringSet &artists, StringSet &albums,
|
|||||||
for (const auto &item : tag) {
|
for (const auto &item : tag) {
|
||||||
switch (item.type) {
|
switch (item.type) {
|
||||||
case TAG_ARTIST:
|
case TAG_ARTIST:
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
#if CLANG_OR_GCC_VERSION(4,8)
|
||||||
artists.emplace(item.value);
|
artists.emplace(item.value);
|
||||||
#else
|
#else
|
||||||
artists.insert(item.value);
|
artists.insert(item.value);
|
||||||
@ -54,7 +54,7 @@ StatsVisitTag(DatabaseStats &stats, StringSet &artists, StringSet &albums,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case TAG_ALBUM:
|
case TAG_ALBUM:
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
#if CLANG_OR_GCC_VERSION(4,8)
|
||||||
albums.emplace(item.value);
|
albums.emplace(item.value);
|
||||||
#else
|
#else
|
||||||
albums.insert(item.value);
|
albums.insert(item.value);
|
||||||
|
@ -747,7 +747,7 @@ UpnpDatabase::VisitUniqueTags(const DatabaseSelection &selection,
|
|||||||
|
|
||||||
const char *value = dirent.tag.GetValue(tag);
|
const char *value = dirent.tag.GetValue(tag);
|
||||||
if (value != nullptr) {
|
if (value != nullptr) {
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
#if CLANG_OR_GCC_VERSION(4,8)
|
||||||
values.emplace(value);
|
values.emplace(value);
|
||||||
#else
|
#else
|
||||||
values.insert(value);
|
values.insert(value);
|
||||||
|
@ -216,7 +216,7 @@ SmbclientNeighborExplorer::Run()
|
|||||||
prev = i;
|
prev = i;
|
||||||
} else {
|
} else {
|
||||||
/* can't see it anymore: move to "lost" */
|
/* can't see it anymore: move to "lost" */
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,7)
|
#if CLANG_OR_GCC_VERSION(4,7)
|
||||||
lost.splice_after(lost.before_begin(), list, prev);
|
lost.splice_after(lost.before_begin(), list, prev);
|
||||||
#else
|
#else
|
||||||
/* the forward_list::splice_after() lvalue
|
/* the forward_list::splice_after() lvalue
|
||||||
|
@ -153,7 +153,7 @@ public:
|
|||||||
HttpdOutput(EventLoop &_loop);
|
HttpdOutput(EventLoop &_loop);
|
||||||
~HttpdOutput();
|
~HttpdOutput();
|
||||||
|
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,7)
|
#if CLANG_OR_GCC_VERSION(4,7)
|
||||||
constexpr
|
constexpr
|
||||||
#endif
|
#endif
|
||||||
static HttpdOutput *Cast(AudioOutput *ao) {
|
static HttpdOutput *Cast(AudioOutput *ao) {
|
||||||
|
@ -137,7 +137,7 @@ CompositeStorage::Directory::Make(const char *uri)
|
|||||||
Directory *directory = this;
|
Directory *directory = this;
|
||||||
while (*uri != 0) {
|
while (*uri != 0) {
|
||||||
const std::string name = NextSegment(uri);
|
const std::string name = NextSegment(uri);
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
#if CLANG_OR_GCC_VERSION(4,8)
|
||||||
auto i = directory->children.emplace(std::move(name),
|
auto i = directory->children.emplace(std::move(name),
|
||||||
Directory());
|
Directory());
|
||||||
#else
|
#else
|
||||||
|
@ -75,7 +75,7 @@ TagSet::InsertUnique(const Tag &src, TagType type, const char *value,
|
|||||||
else
|
else
|
||||||
builder.AddItem(type, value);
|
builder.AddItem(type, value);
|
||||||
CopyTagMask(builder, src, group_mask);
|
CopyTagMask(builder, src, group_mask);
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,8)
|
#if CLANG_OR_GCC_VERSION(4,8)
|
||||||
emplace(builder.Commit());
|
emplace(builder.Commit());
|
||||||
#else
|
#else
|
||||||
insert(builder.Commit());
|
insert(builder.Commit());
|
||||||
|
@ -87,7 +87,7 @@ calc_hash(TagType type, const char *p)
|
|||||||
return hash ^ type;
|
return hash ^ type;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,7)
|
#if CLANG_OR_GCC_VERSION(4,7)
|
||||||
constexpr
|
constexpr
|
||||||
#endif
|
#endif
|
||||||
static inline TagPoolSlot *
|
static inline TagPoolSlot *
|
||||||
|
@ -84,7 +84,7 @@ ContainerAttributeOffset(const A C::*p)
|
|||||||
* Cast the given pointer to a struct member to its parent structure.
|
* Cast the given pointer to a struct member to its parent structure.
|
||||||
*/
|
*/
|
||||||
template<class C, class A>
|
template<class C, class A>
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,7)
|
#if CLANG_OR_GCC_VERSION(4,7)
|
||||||
constexpr
|
constexpr
|
||||||
#endif
|
#endif
|
||||||
static inline C &
|
static inline C &
|
||||||
@ -97,7 +97,7 @@ ContainerCast(A &a, A C::*member)
|
|||||||
* Cast the given pointer to a struct member to its parent structure.
|
* Cast the given pointer to a struct member to its parent structure.
|
||||||
*/
|
*/
|
||||||
template<class C, class A>
|
template<class C, class A>
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,7)
|
#if CLANG_OR_GCC_VERSION(4,7)
|
||||||
constexpr
|
constexpr
|
||||||
#endif
|
#endif
|
||||||
static inline const C &
|
static inline const C &
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,7)
|
#if CLANG_OR_GCC_VERSION(4,7)
|
||||||
#pragma GCC diagnostic push
|
#pragma GCC diagnostic push
|
||||||
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
|
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
|
||||||
#endif
|
#endif
|
||||||
@ -114,7 +114,7 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(__clang__) || GCC_CHECK_VERSION(4,7)
|
#if CLANG_OR_GCC_VERSION(4,7)
|
||||||
#pragma GCC diagnostic pop
|
#pragma GCC diagnostic pop
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user