libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
compiler.hxx
Go to the documentation of this file.
1#pragma once
2
9// needed for C++ stdlib preprocessor defines to become available
10#include <iosfwd>
11
12#if defined(__GLIBCXX__)
13# define COSMOS_GNU_CXXLIB
14#elif defined(_LIBCPP_VERSION)
15# define COSMOS_LLVM_CXXLIB
16#else
17# error "Couldn't determine the kind of C++ standard library"
18#endif
19
20#if defined(__clang__)
21# define COSMOS_CLANG
22#elif defined(__GNUC__)
23# define COSMOS_GCC
24#endif
25
26#ifdef COSMOS_GCC
27// if the compiler supports it then this macro causes printf function style
28// sanity checks to be performed for the function this is attached to.
29#define COSMOS_FORMAT_PRINTF(format_index, first_vararg_index) __attribute__((format(printf, (format_index), (first_vararg_index))))
30#elif defined(COSMOS_CLANG)
31#define COSMOS_FORMAT_PRINTF(format_index, first_vararg_index) __attribute__((__format__ (__printf__, (format_index), (first_vararg_index))))
32#else
33#define COSMOS_FORMAT_PRINTF(format_index, first_Vararg_index)
34#endif
35
36namespace arch {
37
38#ifdef __x86_64__
39# define COMSOS_X86_64
40# define COMSOS_X86
42constexpr inline bool x86_64 = true;
43#else
44constexpr inline bool x86_64 = false;
45#endif
46
47#ifdef __i386__
48# define COSMOS_I386
49# define COSMOS_X86
51constexpr inline bool i386 = true;
52#else
53constexpr inline bool i386 = false;
54#endif
55
57constexpr inline bool x86 = x86_64 || i386;
58} // end ns
constexpr bool x86
Whether we're running on either 32-bit or 64-bit x86.
Definition compiler.hxx:57