mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-05 09:14:03 +00:00
Allow one to force with issue with 'TARGET_BIG_ENDIAN'.
This commit is contained in:
parent
821cd5328a
commit
ffe2c5e5a5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=164018
@ -7,7 +7,7 @@
|
||||
|
||||
|
||||
/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
|
||||
#if defined(__sparc64__) || defined(__ARMEB__)
|
||||
#if defined(__sparc64__) || defined(__ARMEB__) || defined(TARGET_BIG_ENDIAN)
|
||||
#define BYTEORDER 4321
|
||||
#else
|
||||
#define BYTEORDER 1234
|
||||
@ -325,7 +325,7 @@
|
||||
|
||||
/* Define if the host machine stores words of multi-word integers in
|
||||
big-endian order. */
|
||||
#if defined(__sparc64__) || defined(__ARMEB__)
|
||||
#if defined(__sparc64__) || defined(__ARMEB__) || defined(TARGET_BIG_ENDIAN)
|
||||
#define HOST_WORDS_BIG_ENDIAN 1
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user