# HG changeset patch # User Tassilo Philipp # Date 1495464599 -7200 # Node ID b625f2e11911499992c7f02b9e433cb4e9cf7015 # Parent 1a44e750a6ec264914dfb8c103d0dd1b849f8baa - added _MIPSE[BL] to (long) list of mips endian detection #ifdefs diff -r 1a44e750a6ec -r b625f2e11911 dyncall/dyncall_macros.h --- a/dyncall/dyncall_macros.h Sun May 21 21:51:35 2017 +0200 +++ b/dyncall/dyncall_macros.h Mon May 22 16:49:59 2017 +0200 @@ -273,9 +273,9 @@ DC__Arch_PPC64 DC__Arch_SuperH */ -# if (defined(DC__Arch_PPC64) && (DC__ABI_PPC64_ELF_V == 1)) || defined(_BIG_ENDIAN) || defined(MIPSEB) || defined(__MIPSEB) || defined(__MIPSEB__) +# if (defined(DC__Arch_PPC64) && (DC__ABI_PPC64_ELF_V == 1)) || defined(_BIG_ENDIAN) || defined(MIPSEB) || defined(_MIPSEB) || defined(__MIPSEB) || defined(__MIPSEB__) # define DC__Endian_BIG -# elif (defined(DC__Arch_PPC64) && (DC__ABI_PPC64_ELF_V == 2)) || defined(_LITTLE_ENDIAN) || defined(MIPSEL) || defined(__MIPSEL) || defined(__MIPSEL__) +# elif (defined(DC__Arch_PPC64) && (DC__ABI_PPC64_ELF_V == 2)) || defined(_LITTLE_ENDIAN) || defined(MIPSEL) || defined(_MIPSEL) || defined(__MIPSEL) || defined(__MIPSEL__) # define DC__Endian_LITTLE # elif defined(DC__Arch_Sparc64) && !defined(__BYTE_ORDER__) /* Sparc64 default is big-endian, except if explicitly defined */ # define DC__Endian_BIG