2013-11-20 13:04:11 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
2013-11-20 13:04:11 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
|
|
|
#ifndef SPROUT_DETAIL_PREDEF_HPP
|
|
|
|
#define SPROUT_DETAIL_PREDEF_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2015-12-09 10:54:35 +00:00
|
|
|
#include <sprout/predef/version_number.hpp>
|
2014-01-20 02:23:03 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// SPROUT_AVAILABLE_GCC
|
2013-11-20 13:04:11 +00:00
|
|
|
//
|
|
|
|
#if defined(__GNUC__)
|
2014-01-20 02:23:03 +00:00
|
|
|
# define SPROUT_AVAILABLE_GCC (1)
|
2013-11-20 13:04:11 +00:00
|
|
|
#else
|
2014-01-20 02:23:03 +00:00
|
|
|
# define SPROUT_AVAILABLE_GCC (0)
|
|
|
|
#endif
|
|
|
|
//
|
|
|
|
// SPROUT_VERSION_GCC
|
|
|
|
//
|
|
|
|
#if SPROUT_AVAILABLE_GCC
|
|
|
|
# define SPROUT_VERSION_GCC SPROUT_VERSION_NUMBER(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
|
|
|
|
#else
|
|
|
|
# define SPROUT_VERSION_GCC SPROUT_VERSION_NUMBER_ZERO
|
2013-11-20 13:04:11 +00:00
|
|
|
#endif
|
|
|
|
//
|
2014-01-20 04:09:54 +00:00
|
|
|
// SPROUT_GCC_EARLIER
|
|
|
|
// SPROUT_GCC_OR_LATER
|
2013-11-20 13:04:11 +00:00
|
|
|
//
|
2014-01-20 02:23:03 +00:00
|
|
|
#if SPROUT_AVAILABLE_GCC
|
2014-08-14 13:55:49 +00:00
|
|
|
# define SPROUT_GCC_EARLIER(MAJOR, MINOR, PATCH) \
|
|
|
|
(SPROUT_VERSION_GCC < SPROUT_VERSION_NUMBER(MAJOR, MINOR, PATCH))
|
|
|
|
# define SPROUT_GCC_OR_LATER(MAJOR, MINOR, PATCH) \
|
|
|
|
(SPROUT_VERSION_GCC >= SPROUT_VERSION_NUMBER(MAJOR, MINOR, PATCH))
|
2013-11-20 13:04:11 +00:00
|
|
|
#else
|
2014-08-14 13:55:49 +00:00
|
|
|
# define SPROUT_GCC_EARLIER(MAJOR, MINOR, PATCH) \
|
2014-01-20 02:23:03 +00:00
|
|
|
(0)
|
2014-08-14 13:55:49 +00:00
|
|
|
# define SPROUT_GCC_OR_LATER(MAJOR, MINOR, PATCH) \
|
2014-01-20 02:23:03 +00:00
|
|
|
(0)
|
2013-11-20 13:04:11 +00:00
|
|
|
#endif
|
|
|
|
//
|
2014-01-20 04:09:54 +00:00
|
|
|
// SPROUT_GCC_IN_RANGE
|
2013-11-20 13:04:11 +00:00
|
|
|
//
|
2014-01-20 02:23:03 +00:00
|
|
|
#if SPROUT_AVAILABLE_GCC
|
2014-01-20 04:09:54 +00:00
|
|
|
# define SPROUT_GCC_IN_RANGE(first_version, last_version) \
|
|
|
|
(SPROUT_GCC_OR_LATER first_version && SPROUT_GCC_EARLIER last_version)
|
2013-11-20 13:04:11 +00:00
|
|
|
#else
|
2014-01-20 04:09:54 +00:00
|
|
|
# define SPROUT_GCC_IN_RANGE(first_version, last_version) \
|
2014-01-20 02:23:03 +00:00
|
|
|
(0)
|
2013-11-20 13:04:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
2014-01-20 02:23:03 +00:00
|
|
|
// SPROUT_AVAILABLE_CLANG
|
2013-11-20 13:04:11 +00:00
|
|
|
//
|
|
|
|
#if defined(__clang__)
|
2014-01-20 02:23:03 +00:00
|
|
|
# define SPROUT_AVAILABLE_CLANG (1)
|
|
|
|
#else
|
|
|
|
# define SPROUT_AVAILABLE_CLANG (0)
|
|
|
|
#endif
|
|
|
|
//
|
|
|
|
// SPROUT_VERSION_CLANG
|
|
|
|
//
|
|
|
|
#if SPROUT_AVAILABLE_CLANG
|
|
|
|
# define SPROUT_VERSION_CLANG SPROUT_VERSION_NUMBER(__clang_major__, __clang_minor__, __clang_patchlevel__)
|
2013-11-20 13:04:11 +00:00
|
|
|
#else
|
2014-01-20 02:23:03 +00:00
|
|
|
# define SPROUT_VERSION_CLANG SPROUT_VERSION_NUMBER_ZERO
|
2013-11-20 13:04:11 +00:00
|
|
|
#endif
|
|
|
|
//
|
|
|
|
// SPROUT_CLANG_HAS_FUTURE
|
|
|
|
//
|
2014-01-20 02:23:03 +00:00
|
|
|
#if SPROUT_AVAILABLE_CLANG
|
2013-11-20 13:04:11 +00:00
|
|
|
# define SPROUT_CLANG_HAS_FUTURE(future) (__has_feature(future))
|
|
|
|
#else
|
|
|
|
# define SPROUT_CLANG_HAS_FUTURE(future) (0)
|
|
|
|
#endif
|
|
|
|
//
|
2014-01-20 04:09:54 +00:00
|
|
|
// SPROUT_CLANG_EARLIER
|
|
|
|
// SPROUT_CLANG_OR_LATER
|
2013-11-20 13:04:11 +00:00
|
|
|
//
|
2014-01-20 02:23:03 +00:00
|
|
|
#if SPROUT_AVAILABLE_CLANG
|
2014-08-14 13:55:49 +00:00
|
|
|
# define SPROUT_CLANG_EARLIER(MAJOR, MINOR, PATCH) \
|
|
|
|
(SPROUT_VERSION_CLANG < SPROUT_VERSION_NUMBER(MAJOR, MINOR, PATCH))
|
|
|
|
# define SPROUT_CLANG_OR_LATER(MAJOR, MINOR, PATCH) \
|
|
|
|
(SPROUT_VERSION_CLANG >= SPROUT_VERSION_NUMBER(MAJOR, MINOR, PATCH))
|
2013-11-20 13:04:11 +00:00
|
|
|
#else
|
2014-08-14 13:55:49 +00:00
|
|
|
# define SPROUT_CLANG_EARLIER(MAJOR, MINOR, PATCH) \
|
2014-01-20 02:23:03 +00:00
|
|
|
(0)
|
2014-08-14 13:55:49 +00:00
|
|
|
# define SPROUT_CLANG_OR_LATER(MAJOR, MINOR, PATCH) \
|
2014-01-20 02:23:03 +00:00
|
|
|
(0)
|
2013-11-20 13:04:11 +00:00
|
|
|
#endif
|
|
|
|
//
|
2014-01-20 04:09:54 +00:00
|
|
|
// SPROUT_CLANG_IN_RANGE
|
2013-11-20 13:04:11 +00:00
|
|
|
//
|
2014-01-20 02:23:03 +00:00
|
|
|
#if SPROUT_AVAILABLE_CLANG
|
2014-01-20 04:09:54 +00:00
|
|
|
# define SPROUT_CLANG_IN_RANGE(first_version, last_version) \
|
|
|
|
(SPROUT_CLANG_OR_LATER first_version && SPROUT_CLANG_EARLIER last_version)
|
2013-11-20 13:04:11 +00:00
|
|
|
#else
|
2014-01-20 04:09:54 +00:00
|
|
|
# define SPROUT_CLANG_IN_RANGE(first_version, last_version) \
|
2014-01-20 02:23:03 +00:00
|
|
|
(0)
|
2013-11-20 13:04:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_DETAIL_PREDEF_HPP
|