2013-04-16 23:55:31 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 15/04/2013.
|
|
|
|
* Copyright 2013 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 TWOBLUECUBES_CATCH_COMPILER_CAPABILITIES_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_COMPILER_CAPABILITIES_HPP_INCLUDED
|
|
|
|
|
2017-04-25 12:41:30 +02:00
|
|
|
// Detect a number of compiler features - by compiler
|
2015-05-19 19:37:58 +02:00
|
|
|
// The following features are defined:
|
|
|
|
//
|
2015-12-15 08:50:51 +01:00
|
|
|
// CATCH_CONFIG_COUNTER : is the __COUNTER__ macro supported?
|
2017-02-06 01:43:53 +01:00
|
|
|
// CATCH_CONFIG_WINDOWS_SEH : is Windows SEH supported?
|
2017-02-15 17:57:22 +01:00
|
|
|
// CATCH_CONFIG_POSIX_SIGNALS : are POSIX signals supported?
|
2015-08-11 09:09:41 +02:00
|
|
|
// ****************
|
|
|
|
// Note to maintainers: if new toggles are added please document them
|
|
|
|
// in configuration.md, too
|
|
|
|
// ****************
|
2015-05-19 19:37:58 +02:00
|
|
|
|
2015-06-30 09:41:55 +02:00
|
|
|
// In general each macro has a _NO_<feature name> form
|
2017-04-25 12:41:30 +02:00
|
|
|
// (e.g. CATCH_CONFIG_NO_POSIX_SIGNALS) which disables the feature.
|
2015-06-30 09:41:55 +02:00
|
|
|
// Many features, at point of detection, define an _INTERNAL_ macro, so they
|
|
|
|
// can be combined, en-mass, with the _NO_ forms later.
|
|
|
|
|
2013-04-16 23:55:31 +02:00
|
|
|
|
2016-06-09 09:15:57 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
# if __cplusplus >= 201402L
|
|
|
|
# define CATCH_CPP14_OR_GREATER
|
|
|
|
# endif
|
|
|
|
|
2016-02-29 09:01:06 +01:00
|
|
|
#endif
|
|
|
|
|
2013-12-14 15:32:26 +01:00
|
|
|
#ifdef __clang__
|
|
|
|
|
|
|
|
|
2017-03-29 20:30:59 +02:00
|
|
|
# define CATCH_INTERNAL_SUPPRESS_ETD_WARNINGS \
|
|
|
|
_Pragma( "clang diagnostic push" ) \
|
|
|
|
_Pragma( "clang diagnostic ignored \"-Wexit-time-destructors\"" )
|
|
|
|
# define CATCH_INTERNAL_UNSUPPRESS_ETD_WARNINGS \
|
|
|
|
_Pragma( "clang diagnostic pop" )
|
|
|
|
|
2017-02-15 10:38:38 +01:00
|
|
|
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
|
|
|
|
_Pragma( "clang diagnostic push" ) \
|
|
|
|
_Pragma( "clang diagnostic ignored \"-Wparentheses\"" )
|
|
|
|
# define CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS \
|
|
|
|
_Pragma( "clang diagnostic pop" )
|
2016-02-29 09:01:06 +01:00
|
|
|
|
2013-12-14 15:32:26 +01:00
|
|
|
#endif // __clang__
|
|
|
|
|
2017-02-15 17:57:22 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2017-04-20 21:02:25 +02:00
|
|
|
// We know some environments not to support full POSIX signals
|
|
|
|
#if defined(__CYGWIN__) || defined(__QNX__)
|
2017-02-15 17:57:22 +01:00
|
|
|
|
|
|
|
# if !defined(CATCH_CONFIG_POSIX_SIGNALS)
|
|
|
|
# define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
|
|
|
|
# endif
|
|
|
|
|
2017-04-20 21:02:25 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Cygwin
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
|
2017-03-01 16:58:57 +01:00
|
|
|
// Required for some versions of Cygwin to declare gettimeofday
|
|
|
|
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
|
|
|
|
# define _BSD_SOURCE
|
|
|
|
|
2017-02-15 17:57:22 +01:00
|
|
|
#endif // __CYGWIN__
|
|
|
|
|
2013-04-16 23:55:31 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Borland
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __BORLANDC__
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// EDG
|
|
|
|
#ifdef __EDG_VERSION__
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __EDG_VERSION__
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Digital Mars
|
|
|
|
#ifdef __DMC__
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __DMC__
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// GCC
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __GNUC__
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Visual C++
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
2017-02-06 01:43:53 +01:00
|
|
|
#define CATCH_INTERNAL_CONFIG_WINDOWS_SEH
|
|
|
|
|
2013-04-16 23:55:31 +02:00
|
|
|
#endif // _MSC_VER
|
|
|
|
|
2015-08-11 09:09:41 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-12-15 08:50:51 +01:00
|
|
|
// Use __COUNTER__ if the compiler supports it
|
|
|
|
#if ( defined _MSC_VER && _MSC_VER >= 1300 ) || \
|
2017-06-13 18:20:59 +02:00
|
|
|
( defined __GNUC__ && ( __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3 )) ) || \
|
2015-12-15 08:50:51 +01:00
|
|
|
( defined __clang__ && __clang_major__ >= 3 )
|
|
|
|
|
|
|
|
#define CATCH_INTERNAL_CONFIG_COUNTER
|
|
|
|
|
|
|
|
#endif
|
2016-02-29 09:01:06 +01:00
|
|
|
|
2014-03-20 12:48:19 +01:00
|
|
|
|
2015-06-30 09:41:55 +02:00
|
|
|
// Now set the actual defines based on the above + anything the user has configured
|
2017-04-25 12:41:30 +02:00
|
|
|
|
2017-01-14 22:00:51 +01:00
|
|
|
// Use of __COUNTER__ is suppressed if __JETBRAINS_IDE__ is #defined (meaning we're being parsed by a JetBrains IDE for
|
|
|
|
// analytics) because, at time of writing, __COUNTER__ is not properly handled by it.
|
|
|
|
// This does not affect compilation
|
|
|
|
#if defined(CATCH_INTERNAL_CONFIG_COUNTER) && !defined(CATCH_CONFIG_NO_COUNTER) && !defined(CATCH_CONFIG_COUNTER) && !defined(__JETBRAINS_IDE__)
|
2015-12-15 08:50:51 +01:00
|
|
|
# define CATCH_CONFIG_COUNTER
|
|
|
|
#endif
|
2017-02-06 01:43:53 +01:00
|
|
|
#if defined(CATCH_INTERNAL_CONFIG_WINDOWS_SEH) && !defined(CATCH_CONFIG_NO_WINDOWS_SEH) && !defined(CATCH_CONFIG_WINDOWS_SEH)
|
|
|
|
# define CATCH_CONFIG_WINDOWS_SEH
|
|
|
|
#endif
|
2017-02-15 17:57:22 +01:00
|
|
|
// This is set by default, because we assume that unix compilers are posix-signal-compatible by default.
|
2017-03-29 20:30:59 +02:00
|
|
|
#if !defined(CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS) && !defined(CATCH_CONFIG_NO_POSIX_SIGNALS) && !defined(CATCH_CONFIG_POSIX_SIGNALS)
|
2017-02-15 17:57:22 +01:00
|
|
|
# define CATCH_CONFIG_POSIX_SIGNALS
|
|
|
|
#endif
|
2015-06-30 09:41:55 +02:00
|
|
|
|
2016-02-29 09:01:06 +01:00
|
|
|
#if !defined(CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS)
|
|
|
|
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS
|
2017-02-15 10:38:38 +01:00
|
|
|
# define CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS
|
2016-02-29 09:01:06 +01:00
|
|
|
#endif
|
2017-03-29 20:30:59 +02:00
|
|
|
#if !defined(CATCH_INTERNAL_SUPPRESS_ETD_WARNINGS)
|
|
|
|
# define CATCH_INTERNAL_SUPPRESS_ETD_WARNINGS
|
|
|
|
# define CATCH_INTERNAL_UNSUPPRESS_ETD_WARNINGS
|
|
|
|
#endif
|
2015-06-30 09:41:55 +02:00
|
|
|
|
2015-08-11 09:09:41 +02:00
|
|
|
|
2013-04-16 23:55:31 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_COMPILER_CAPABILITIES_HPP_INCLUDED
|
|
|
|
|