Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim: set ts=8 sts=2 et sw=2 tw=80: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef LulPlatformMacros_h |
michael@0 | 8 | #define LulPlatformMacros_h |
michael@0 | 9 | |
michael@0 | 10 | #include <stdint.h> |
michael@0 | 11 | #include <stdlib.h> |
michael@0 | 12 | |
michael@0 | 13 | // Define platform selection macros in a consistent way. The primary |
michael@0 | 14 | // factorisation is on (ARCH,OS) pairs ("PLATforms") but ARCH_ and OS_ |
michael@0 | 15 | // macros are defined too, since they are sometimes convenient. |
michael@0 | 16 | |
michael@0 | 17 | #undef LUL_PLAT_x64_linux |
michael@0 | 18 | #undef LUL_PLAT_x86_linux |
michael@0 | 19 | #undef LUL_PLAT_arm_android |
michael@0 | 20 | #undef LUL_PLAT_x86_android |
michael@0 | 21 | |
michael@0 | 22 | #undef LUL_ARCH_arm |
michael@0 | 23 | #undef LUL_ARCH_x86 |
michael@0 | 24 | #undef LUL_ARCH_x64 |
michael@0 | 25 | |
michael@0 | 26 | #undef LUL_OS_android |
michael@0 | 27 | #undef LUL_OS_linux |
michael@0 | 28 | |
michael@0 | 29 | #if defined(__linux__) && defined(__x86_64__) |
michael@0 | 30 | # define LUL_PLAT_x64_linux 1 |
michael@0 | 31 | # define LUL_ARCH_x64 1 |
michael@0 | 32 | # define LUL_OS_linux 1 |
michael@0 | 33 | |
michael@0 | 34 | #elif defined(__linux__) && defined(__i386__) && !defined(__ANDROID__) |
michael@0 | 35 | # define LUL_PLAT_x86_linux 1 |
michael@0 | 36 | # define LUL_ARCH_x86 1 |
michael@0 | 37 | # define LUL_OS_linux 1 |
michael@0 | 38 | |
michael@0 | 39 | #elif defined(__ANDROID__) && defined(__arm__) |
michael@0 | 40 | # define LUL_PLAT_arm_android 1 |
michael@0 | 41 | # define LUL_ARCH_arm 1 |
michael@0 | 42 | # define LUL_OS_android 1 |
michael@0 | 43 | |
michael@0 | 44 | #elif defined(__ANDROID__) && defined(__i386__) |
michael@0 | 45 | # define LUL_PLAT_x86_android 1 |
michael@0 | 46 | # define LUL_ARCH_x86 1 |
michael@0 | 47 | # define LUL_OS_android 1 |
michael@0 | 48 | |
michael@0 | 49 | #else |
michael@0 | 50 | # error "Unsupported platform" |
michael@0 | 51 | #endif |
michael@0 | 52 | |
michael@0 | 53 | #endif // LulPlatformMacros_h |