2012-04-30 11:50:07 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2012-04-30 11:50:07 +10:00
|
|
|
*
|
2015-11-11 17:00:25 +11:00
|
|
|
* Copyright 2012-2015 Danny Robson <danny@nerdcruft.net>
|
2012-04-30 11:50:07 +10:00
|
|
|
*/
|
|
|
|
|
2019-01-04 17:11:53 +11:00
|
|
|
#pragma once
|
2012-04-30 11:50:07 +10:00
|
|
|
|
2019-01-04 17:11:53 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Determine what compiler we're running
|
|
|
|
#if defined(__clang__)
|
|
|
|
#define COMPILER_CLANG
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define COMPILER_GCC
|
|
|
|
#else
|
|
|
|
#error "Unknown compiler"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Determine what operating system we're targetting
|
2015-08-10 15:44:39 +10:00
|
|
|
#if defined(__ANDROID__)
|
|
|
|
#define PLATFORM_ANDROID
|
2015-11-11 17:00:25 +11:00
|
|
|
#define PLATFORM_SUFFIX "android"
|
2015-08-10 15:44:39 +10:00
|
|
|
#elif defined(__linux__) || defined (__linux)
|
2012-04-30 11:50:07 +10:00
|
|
|
#define PLATFORM_LINUX
|
2015-11-11 17:00:25 +11:00
|
|
|
#define PLATFORM_SUFFIX "linux"
|
2016-05-13 15:23:22 +10:00
|
|
|
#elif defined(__FreeBSD__)
|
|
|
|
#define PLATFORM_FREEBSD
|
|
|
|
#define PLATFORM_SUFFIX "freebsd"
|
2012-04-30 11:50:07 +10:00
|
|
|
#elif defined(__WIN32) || defined (_WIN32)
|
|
|
|
#define PLATFORM_WIN32
|
2015-11-11 17:00:25 +11:00
|
|
|
#define PLATFORM_SUFFIX "win32"
|
2012-04-30 11:50:07 +10:00
|
|
|
#else
|
|
|
|
#error "Unknown platform"
|
2015-11-11 17:00:25 +11:00
|
|
|
#define PLATFORM_SUFFIX "unknown"
|
2012-04-30 11:50:07 +10:00
|
|
|
#endif
|
|
|
|
|
2012-06-13 14:43:27 +10:00
|
|
|
|
2019-01-04 17:11:53 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if defined(COMPILER_GCC) || defined(COMPILER_CLANG)
|
|
|
|
#if defined(__x86_64__)
|
|
|
|
#define PROCESSOR_AMD64 1
|
|
|
|
#elif defined(__arm__)
|
|
|
|
#define PROCESSOR_ARM 1
|
|
|
|
#else
|
|
|
|
#error "Unknown processor"
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#error "Unsupported compiler"
|
|
|
|
#endif
|