1 /* 2 * Copyright 2007-2010, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _BE_BUILD_H 6 #define _BE_BUILD_H 7 8 9 #include <config/HaikuConfig.h> 10 11 12 #define B_BEOS_VERSION_4 0x0400 13 #define B_BEOS_VERSION_4_5 0x0450 14 #define B_BEOS_VERSION_5 0x0500 15 16 #define B_BEOS_VERSION B_BEOS_VERSION_5 17 #define B_BEOS_VERSION_MAUI B_BEOS_VERSION_5 18 19 /* Haiku (API) version */ 20 #define B_HAIKU_VERSION_BEOS 0x00000001 21 #define B_HAIKU_VERSION_BONE 0x00000002 22 #define B_HAIKU_VERSION_DANO 0x00000003 23 #define B_HAIKU_VERSION_1_ALPHA_1 0x00000100 24 #define B_HAIKU_VERSION_1_PRE_ALPHA_2 0x00000101 25 #define B_HAIKU_VERSION_1_ALPHA_2 0x00000200 26 #define B_HAIKU_VERSION_1_PRE_ALPHA_3 0x00000201 27 #define B_HAIKU_VERSION_1 0x00010000 28 29 #define B_HAIKU_VERSION B_HAIKU_VERSION_1_PRE_ALPHA_3 30 31 /* Haiku ABI */ 32 #define B_HAIKU_ABI_MAJOR 0xffff0000 33 #define B_HAIKU_ABI_GCC_2 0x00020000 34 #define B_HAIKU_ABI_GCC_4 0x00040000 35 36 #define B_HAIKU_ABI_GCC_2_ANCIENT 0x00020000 37 #define B_HAIKU_ABI_GCC_2_BEOS 0x00020001 38 #define B_HAIKU_ABI_GCC_2_HAIKU 0x00020002 39 40 #if __GNUC__ == 2 41 # define B_HAIKU_ABI B_HAIKU_ABI_GCC_2_HAIKU 42 #elif __GNUC__ == 4 43 # define B_HAIKU_ABI B_HAIKU_ABI_GCC_4 44 #else 45 # error Unsupported gcc version! 46 #endif 47 48 49 #define B_HAIKU_BITS __HAIKU_ARCH_BITS 50 #define B_HAIKU_PHYSICAL_BITS __HAIKU_ARCH_PHYSICAL_BITS 51 52 #ifdef __HAIKU_ARCH_64_BIT 53 # define B_HAIKU_64_BIT 1 54 #else 55 # define B_HAIKU_32_BIT 1 56 #endif 57 58 #ifdef __HAIKU_ARCH_PHYSICAL_64_BIT 59 # define B_HAIKU_PHYSICAL_64_BIT 1 60 #else 61 # define B_HAIKU_PHYSICAL_32_BIT 1 62 #endif 63 64 #ifdef __HAIKU_BEOS_COMPATIBLE 65 # define B_HAIKU_BEOS_COMPATIBLE 1 66 #endif 67 68 69 #define _UNUSED(argument) argument 70 #define _PACKED __attribute__((packed)) 71 #define _PRINTFLIKE(_format_, _args_) \ 72 __attribute__((format(__printf__, _format_, _args_))) 73 #define _EXPORT 74 #define _IMPORT 75 76 #define B_DEFINE_SYMBOL_VERSION(function, versionedSymbol) \ 77 __asm__(".symver " function "," versionedSymbol) 78 79 #endif /* _BE_BUILD_H */ 80