mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Allow one to force with issue with 'TARGET_BIG_ENDIAN'.
This commit is contained in:
parent
821cd5328a
commit
ffe2c5e5a5
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue