118 lines
4.3 KiB
C++
118 lines
4.3 KiB
C++
#ifndef _C4_COMPILER_HPP_
|
|
#define _C4_COMPILER_HPP_
|
|
|
|
/** @file compiler.hpp Provides compiler information macros
|
|
* @ingroup basic_headers */
|
|
|
|
#include "c4/platform.hpp"
|
|
|
|
// Compilers:
|
|
// C4_MSVC
|
|
// Visual Studio 2022: MSVC++ 17, 1930
|
|
// Visual Studio 2019: MSVC++ 16, 1920
|
|
// Visual Studio 2017: MSVC++ 15
|
|
// Visual Studio 2015: MSVC++ 14
|
|
// Visual Studio 2013: MSVC++ 13
|
|
// Visual Studio 2013: MSVC++ 12
|
|
// Visual Studio 2012: MSVC++ 11
|
|
// Visual Studio 2010: MSVC++ 10
|
|
// Visual Studio 2008: MSVC++ 09
|
|
// Visual Studio 2005: MSVC++ 08
|
|
// C4_CLANG
|
|
// C4_GCC
|
|
// C4_ICC (intel compiler)
|
|
/** @see http://sourceforge.net/p/predef/wiki/Compilers/ for a list of compiler identifier macros */
|
|
/** @see https://msdn.microsoft.com/en-us/library/b0084kay.aspx for VS2013 predefined macros */
|
|
|
|
#if defined(_MSC_VER) && !defined(__clang__)
|
|
# define C4_MSVC
|
|
# define C4_MSVC_VERSION_2022 17
|
|
# define C4_MSVC_VERSION_2019 16
|
|
# define C4_MSVC_VERSION_2017 15
|
|
# define C4_MSVC_VERSION_2015 14
|
|
# define C4_MSVC_VERSION_2013 12
|
|
# define C4_MSVC_VERSION_2012 11
|
|
# if _MSC_VER >= 1930
|
|
# define C4_MSVC_VERSION C4_MSVC_VERSION_2022 // visual studio 2022
|
|
# define C4_MSVC_2022
|
|
# elif _MSC_VER >= 1920
|
|
# define C4_MSVC_VERSION C_4MSVC_VERSION_2019 // visual studio 2019
|
|
# define C4_MSVC_2019
|
|
# elif _MSC_VER >= 1910
|
|
# define C4_MSVC_VERSION C4_MSVC_VERSION_2017 // visual studio 2017
|
|
# define C4_MSVC_2017
|
|
# elif _MSC_VER == 1900
|
|
# define C4_MSVC_VERSION C4_MSVC_VERSION_2015 // visual studio 2015
|
|
# define C4_MSVC_2015
|
|
# elif _MSC_VER == 1800
|
|
# error "MSVC version not supported"
|
|
# define C4_MSVC_VERSION C4_MSVC_VERSION_2013 // visual studio 2013
|
|
# define C4_MSVC_2013
|
|
# elif _MSC_VER == 1700
|
|
# error "MSVC version not supported"
|
|
# define C4_MSVC_VERSION C4_MSVC_VERSION_2012 // visual studio 2012
|
|
# define C4_MSVC_2012
|
|
# elif _MSC_VER == 1600
|
|
# error "MSVC version not supported"
|
|
# define C4_MSVC_VERSION 10 // visual studio 2010
|
|
# define C4_MSVC_2010
|
|
# elif _MSC_VER == 1500
|
|
# error "MSVC version not supported"
|
|
# define C4_MSVC_VERSION 09 // visual studio 2008
|
|
# define C4_MSVC_2008
|
|
# elif _MSC_VER == 1400
|
|
# error "MSVC version not supported"
|
|
# define C4_MSVC_VERSION 08 // visual studio 2005
|
|
# define C4_MSVC_2005
|
|
# else
|
|
# error "MSVC version not supported"
|
|
# endif // _MSC_VER
|
|
#else
|
|
# define C4_MSVC_VERSION 0 // visual studio not present
|
|
# define C4_GCC_LIKE
|
|
# ifdef __INTEL_COMPILER // check ICC before checking GCC, as ICC defines __GNUC__ too
|
|
# define C4_ICC
|
|
# define C4_ICC_VERSION __INTEL_COMPILER
|
|
# elif defined(__APPLE_CC__)
|
|
# define C4_XCODE
|
|
# if defined(__clang__)
|
|
# define C4_CLANG
|
|
# ifndef __apple_build_version__
|
|
# define C4_CLANG_VERSION C4_VERSION_ENCODED(__clang_major__, __clang_minor__, __clang_patchlevel__)
|
|
# else
|
|
# define C4_CLANG_VERSION __apple_build_version__
|
|
# endif
|
|
# else
|
|
# define C4_XCODE_VERSION __APPLE_CC__
|
|
# endif
|
|
# elif defined(__clang__)
|
|
# define C4_CLANG
|
|
# ifndef __apple_build_version__
|
|
# define C4_CLANG_VERSION C4_VERSION_ENCODED(__clang_major__, __clang_minor__, __clang_patchlevel__)
|
|
# else
|
|
# define C4_CLANG_VERSION __apple_build_version__
|
|
# endif
|
|
# elif defined(__GNUC__)
|
|
# define C4_GCC
|
|
# if defined(__GNUC_PATCHLEVEL__)
|
|
# define C4_GCC_VERSION C4_VERSION_ENCODED(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
|
|
# else
|
|
# define C4_GCC_VERSION C4_VERSION_ENCODED(__GNUC__, __GNUC_MINOR__, 0)
|
|
# endif
|
|
# if __GNUC__ < 5
|
|
# if __GNUC__ == 4 && __GNUC_MINOR__ >= 8
|
|
// provided by cmake sub-project
|
|
# include "c4/gcc-4.8.hpp"
|
|
# else
|
|
// we do not support GCC < 4.8:
|
|
// * misses std::is_trivially_copyable
|
|
// * misses std::align
|
|
// * -Wshadow has false positives when a local function parameter has the same name as a method
|
|
# error "GCC < 4.8 is not supported"
|
|
# endif
|
|
# endif
|
|
# endif
|
|
#endif // defined(C4_WIN) && defined(_MSC_VER)
|
|
|
|
#endif /* _C4_COMPILER_HPP_ */
|