1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/*
* Copyright (C) 2013-2021 Canonical, Ltd.
* Copyright (C) 2022-2025 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#if !defined(STRESS_VERSION_H)
#define STRESS_VERSION_H
#define STRESS_VERSION_NUMBER(major, minor, patchlevel) \
(((major) * 10000) + ((minor) * 100) + (patchlevel))
#if defined(__GLIBC__) && \
defined(__GLIBC_MINOR__)
#define NEED_GLIBC(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) <= \
STRESS_VERSION_NUMBER(__GLIBC__, __GLIBC_MINOR__, 0)
#else
#define NEED_GLIBC(major, minor, patchlevel) (0)
#endif
#if defined(__GNUC__) && \
defined(__GNUC_MINOR__)
#if defined(__GNUC_PATCHLEVEL__)
#define NEED_GNUC(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) <= \
STRESS_VERSION_NUMBER(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
#define EQUAL_GNUC(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) == \
STRESS_VERSION_NUMBER(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)
#else
#define NEED_GNUC(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) <= \
STRESS_VERSION_NUMBER(__GNUC__, __GNUC_MINOR__, 0)
#define EQUAL_GNUC(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) == \
STRESS_VERSION_NUMBER(__GNUC__, __GNUC_MINOR__, 0)
#endif
#else
#define NEED_GNUC(major, minor, patchlevel) (0)
#define EQUAL_GNUC(major, minor, patchlevel) (0)
#endif
#if defined(__clang__) && \
defined(__clang_major__) && \
defined(__clang_minor__) && \
defined(__clang_patchlevel__)
#define NEED_CLANG(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) <= \
STRESS_VERSION_NUMBER(__clang_major__, __clang_minor__, __clang_patchlevel__)
#else
#define NEED_CLANG(major, minor, patchlevel) (0)
#endif
#if defined(__ICC) && \
defined(__INTEL_COMPILER) && \
defined(__INTEL_COMPILER_UPDATE)
#define NEED_ICC(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) <= \
STRESS_VERSION_NUMBER(__INTEL_COMPILER, __INTEL_COMPILER_UPDATE, 0)
#else
#define NEED_ICC(major, minor, patchlevel) (0)
#endif
#if defined(__clang__) && \
(defined(__INTEL_CLANG_COMPILER) || defined(__INTEL_LLVM_COMPILER))
#define NEED_ICX(major, minor, patchlevel) \
STRESS_VERSION_NUMBER(major, minor, patchlevel) <= __INTEL_CLANG_COMPILER
#else
#define NEED_ICX(major, minor, patchlevel) (0)
#endif
#endif
|