12#if defined(__GLIBCXX__)
13# define COSMOS_GNU_CXXLIB
14#elif defined(_LIBCPP_VERSION)
15# define COSMOS_LLVM_CXXLIB
17# error "Couldn't determine the kind of C++ standard library"
22#elif defined(__GNUC__)
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))))
33#define COSMOS_FORMAT_PRINTF(format_index, first_Vararg_index)
42constexpr inline bool x86_64 =
true;
44constexpr inline bool x86_64 =
false;
51constexpr inline bool i386 =
true;
53constexpr inline bool i386 =
false;
57constexpr inline bool x86 = x86_64 || i386;
constexpr bool x86
Whether we're running on either 32-bit or 64-bit x86.