123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
- /* If you are missing that file, acquire a complete release at teeworlds.com. */
- #ifndef BASE_DETECT_H
- #define BASE_DETECT_H
- /*
- this file detected the family, platform and architecture
- to compile for.
- */
- /* platforms */
- /* windows Family */
- #if defined(WIN64) || defined(_WIN64)
- /* Hmm, is this IA64 or x86-64? */
- #define CONF_FAMILY_WINDOWS 1
- #define CONF_FAMILY_STRING "windows"
- #define CONF_PLATFORM_WIN64 1
- #define CONF_PLATFORM_STRING "win64"
- #elif defined(WIN32) || defined(_WIN32) || defined(__CYGWIN32__) || defined(__MINGW32__)
- #define CONF_FAMILY_WINDOWS 1
- #define CONF_FAMILY_STRING "windows"
- #define CONF_PLATFORM_WIN32 1
- #define CONF_PLATFORM_STRING "win32"
- #endif
- /* unix family */
- #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
- #define CONF_FAMILY_UNIX 1
- #define CONF_FAMILY_STRING "unix"
- #define CONF_PLATFORM_FREEBSD 1
- #define CONF_PLATFORM_STRING "freebsd"
- #endif
- #if defined(__OpenBSD__)
- #define CONF_FAMILY_UNIX 1
- #define CONF_FAMILY_STRING "unix"
- #define CONF_PLATFORM_OPENBSD 1
- #define CONF_PLATFORM_STRING "openbsd"
- #endif
- #if defined(__LINUX__) || defined(__linux__)
- #define CONF_FAMILY_UNIX 1
- #define CONF_FAMILY_STRING "unix"
- #define CONF_PLATFORM_LINUX 1
- #define CONF_PLATFORM_STRING "linux"
- #endif
- #if defined(__GNU__) || defined(__gnu__)
- #define CONF_FAMILY_UNIX 1
- #define CONF_FAMILY_STRING "unix"
- #define CONF_PLATFORM_HURD 1
- #define CONF_PLATFORM_STRING "gnu"
- #endif
- #if defined(MACOSX) || defined(__APPLE__) || defined(__DARWIN__)
- #define CONF_FAMILY_UNIX 1
- #define CONF_FAMILY_STRING "unix"
- #define CONF_PLATFORM_MACOSX 1
- #define CONF_PLATFORM_STRING "macosx"
- #endif
- #if defined(__sun)
- #define CONF_FAMILY_UNIX 1
- #define CONF_FAMILY_STRING "unix"
- #define CONF_PLATFORM_SOLARIS 1
- #define CONF_PLATFORM_STRING "solaris"
- #endif
- /* beos family */
- #if defined(__BeOS) || defined(__BEOS__)
- #define CONF_FAMILY_BEOS 1
- #define CONF_FAMILY_STRING "beos"
- #define CONF_PLATFORM_BEOS 1
- #define CONF_PLATFORM_STRING "beos"
- #endif
- /* use gcc endianness definitions when available */
- #if defined(__GNUC__) && !defined(__APPLE__) && !defined(__MINGW32__) && !defined(__sun)
- #if defined(__FreeBSD__) || defined(__OpenBSD__)
- #include <sys/endian.h>
- #else
- #include <endian.h>
- #endif
- #if __BYTE_ORDER == __LITTLE_ENDIAN
- #define CONF_ARCH_ENDIAN_LITTLE 1
- #elif __BYTE_ORDER == __BIG_ENDIAN
- #define CONF_ARCH_ENDIAN_BIG 1
- #endif
- #endif
- /* architectures */
- #if defined(i386) || defined(__i386__) || defined(__x86__) || defined(CONF_PLATFORM_WIN32)
- #define CONF_ARCH_IA32 1
- #define CONF_ARCH_STRING "ia32"
- #if !defined(CONF_ARCH_ENDIAN_LITTLE) && !defined(CONF_ARCH_ENDIAN_BIG)
- #define CONF_ARCH_ENDIAN_LITTLE 1
- #endif
- #endif
- #if defined(__ia64__) || defined(_M_IA64)
- #define CONF_ARCH_IA64 1
- #define CONF_ARCH_STRING "ia64"
- #if !defined(CONF_ARCH_ENDIAN_LITTLE) && !defined(CONF_ARCH_ENDIAN_BIG)
- #define CONF_ARCH_ENDIAN_LITTLE 1
- #endif
- #endif
- #if defined(__amd64__) || defined(__x86_64__) || defined(_M_X64)
- #define CONF_ARCH_AMD64 1
- #define CONF_ARCH_STRING "amd64"
- #if !defined(CONF_ARCH_ENDIAN_LITTLE) && !defined(CONF_ARCH_ENDIAN_BIG)
- #define CONF_ARCH_ENDIAN_LITTLE 1
- #endif
- #endif
- #if defined(__powerpc__) || defined(__ppc__)
- #define CONF_ARCH_PPC 1
- #define CONF_ARCH_STRING "ppc"
- #if !defined(CONF_ARCH_ENDIAN_LITTLE) && !defined(CONF_ARCH_ENDIAN_BIG)
- #define CONF_ARCH_ENDIAN_BIG 1
- #endif
- #endif
- #if defined(__sparc__)
- #define CONF_ARCH_SPARC 1
- #define CONF_ARCH_STRING "sparc"
- #if !defined(CONF_ARCH_ENDIAN_LITTLE) && !defined(CONF_ARCH_ENDIAN_BIG)
- #define CONF_ARCH_ENDIAN_BIG 1
- #endif
- #endif
- #ifndef CONF_FAMILY_STRING
- #define CONF_FAMILY_STRING "unknown"
- #endif
- #ifndef CONF_PLATFORM_STRING
- #define CONF_PLATFORM_STRING "unknown"
- #endif
- #ifndef CONF_ARCH_STRING
- #define CONF_ARCH_STRING "unknown"
- #endif
- #endif
|