SP: Add support for FreeBSD/powerpc

Put it after powerpc64, because powerpc is also defined on powerpc64.
This commit is contained in:
pkubaj 2020-05-04 01:35:23 +02:00 committed by GitHub
parent 7470e4b7af
commit 19c5167037
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,6 +231,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define ARCH_STRING "alpha" #define ARCH_STRING "alpha"
#elif defined __powerpc64__ #elif defined __powerpc64__
#define ARCH_STRING "powerpc64" #define ARCH_STRING "powerpc64"
#elif defined __powerpc__
#define ARCH_STRING "powerpc"
#endif #endif
#if BYTE_ORDER == BIG_ENDIAN #if BYTE_ORDER == BIG_ENDIAN