You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
/* -*- coding: utf-8 -*-
|
|
* ----------------------------------------------------------------------
|
|
* Copyright © 2012-2013, RedJack, LLC.
|
|
* All rights reserved.
|
|
*
|
|
* Please see the COPYING file in this distribution for license
|
|
* details.
|
|
* ----------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef LIBCORK_CONFIG_ARCH_H
|
|
#define LIBCORK_CONFIG_ARCH_H
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
* Platform
|
|
*/
|
|
|
|
#if defined(__i386__) || defined(_M_IX86)
|
|
#define CORK_CONFIG_ARCH_X86 1
|
|
#else
|
|
#define CORK_CONFIG_ARCH_X86 0
|
|
#endif
|
|
|
|
#if defined(__x86_64__) || defined(_M_X64)
|
|
#define CORK_CONFIG_ARCH_X64 1
|
|
#else
|
|
#define CORK_CONFIG_ARCH_X64 0
|
|
#endif
|
|
|
|
#if defined(__powerpc__) || defined(__ppc__)
|
|
/* GCC-ish compiler */
|
|
#define CORK_CONFIG_ARCH_PPC 1
|
|
#elif defined(_M_PPC)
|
|
/* VS-ish compiler */
|
|
#define CORK_CONFIG_ARCH_PPC 1
|
|
#elif defined(_ARCH_PPC)
|
|
/* Something called XL C/C++? */
|
|
#define CORK_CONFIG_ARCH_PPC 1
|
|
#else
|
|
#define CORK_CONFIG_ARCH_PPC 0
|
|
#endif
|
|
|
|
|
|
#endif /* LIBCORK_CONFIG_ARCH_H */
|