XIEITE_ARCH_TYPE_ /*???*/
, XIEITE_ARCH_MAJOR_ /*???*/
, XIEITE_ARCH_MINOR_ /*???*/
, XIEITE_ARCH_PATCH_ /*???*/
, XIEITE_ARCH_EQ ()
, XIEITE_ARCH_LEAST ()
, XIEITE_ARCH_MOST ()
Defined in header <xieite/pp/arch.hpp>
Macros for identifying the current computer architecture and its version (major, minor, patch). The macros are not mutually exclusive.
Definitions
#typeUse with#define XIEITE_ARCH_TYPE_ /*???*/ /* boolean integer literal */ #define XIEITE_ARCH_MAJOR_ /*???*/ /* integer literal */ #define XIEITE_ARCH_MINOR_ /*???*/ /* integer literal */ #define XIEITE_ARCH_PATCH_ /*???*/ /* integer literal */
ALPHA
, ARM
, BLACKFIN
, CONVEX
, CRAY
, CSKY
, EPIPHANY
, ELBRUS_2000
, FR30
, HEXAGON
, HP_800
, HP_9000
, IA64
, IBM_SYSTEM_32
, IBM_SYSTEM_370
, IBM_SYSTEM_390
, IBM_Z
, LOONGARCH
, M_CORE
, M32R
, MIPS
, MMIX
, MN103
, MOTOROLA_68000
, MOXIE
, NDS32
, NEC_SX_AURORA_TSUBASA
, NIOS_II
, OR1K
, PA_RISC
, PDP_11
, PNACL
, POWERPC
, PTX
, PYRAMID_9810
, RISC_V
, RS_6000
, SPARC
, SUPERH
, TAHOE
, TMS320
, TMS470
, V850
, VAX
, X80
, X86_32
, X86_64
, XENON
, XSTORMY16
, or XTENSA
. See example.#eq
Allows two optional arguments for the minor and patch version numbers. Expands to an expression checking whether an architecture is the target architecture and its version is equal to some value.#define XIEITE_ARCH_EQ (type ,major ,... /* minor, patch */ )/* boolean expression */
#least
Expands to an expression checking whether an architecture is the target architecture and its version is equal to or greater than some value.#define XIEITE_ARCH_LEAST (type ,major ,... /* minor, patch */ )/* boolean expression */
#most
Expands to an expression checking whether an architecture is the target architecture and its version is equal to or less than some value.#define XIEITE_ARCH_MOST (type ,major ,... /* minor, patch */ )/* boolean expression */
Example
Possible output:int main () {std ::"Is target architecture x86-64? ,{}\n "XIEITE_ARCH_TYPE_X86_64 ); }
[View in Compiler Explorer]Is target architecture x86-64? 1