2013-07-24 11:41:39 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-01-22 07:42:15 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/* Various compiler checks. */
|
|
|
|
|
2013-07-24 11:41:39 +04:00
|
|
|
#ifndef mozilla_Compiler_h
|
|
|
|
#define mozilla_Compiler_h
|
2013-01-22 07:42:15 +04:00
|
|
|
|
2014-06-20 20:19:35 +04:00
|
|
|
#define MOZ_IS_GCC 0
|
|
|
|
|
2013-01-22 07:42:15 +04:00
|
|
|
#if !defined(__clang__) && defined(__GNUC__)
|
2013-05-01 23:45:05 +04:00
|
|
|
|
2014-06-20 20:19:35 +04:00
|
|
|
# undef MOZ_IS_GCC
|
2014-01-18 01:25:30 +04:00
|
|
|
# define MOZ_IS_GCC 1
|
2013-01-22 07:42:15 +04:00
|
|
|
/*
|
2016-06-04 06:08:41 +03:00
|
|
|
* These macros should simplify gcc version checking. For example, to check
|
2015-01-10 01:33:12 +03:00
|
|
|
* for gcc 4.7.1 or later, check `#if MOZ_GCC_VERSION_AT_LEAST(4, 7, 1)`.
|
2013-01-22 07:42:15 +04:00
|
|
|
*/
|
|
|
|
# define MOZ_GCC_VERSION_AT_LEAST(major, minor, patchlevel) \
|
|
|
|
((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= \
|
|
|
|
((major)*10000 + (minor)*100 + (patchlevel)))
|
2016-06-04 06:08:41 +03:00
|
|
|
# define MOZ_GCC_VERSION_AT_MOST(major, minor, patchlevel) \
|
|
|
|
((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) <= \
|
|
|
|
((major)*10000 + (minor)*100 + (patchlevel)))
|
2018-07-22 09:45:41 +03:00
|
|
|
# if !MOZ_GCC_VERSION_AT_LEAST(6, 1, 0)
|
|
|
|
# error "mfbt (and Gecko) require at least gcc 6.1 to build."
|
2014-01-18 01:25:30 +04:00
|
|
|
# endif
|
2013-05-01 23:45:05 +04:00
|
|
|
|
2013-01-22 07:42:15 +04:00
|
|
|
#endif
|
|
|
|
|
2013-07-24 11:41:39 +04:00
|
|
|
#endif /* mozilla_Compiler_h */
|