diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2019-10-31 16:59:59 -0700 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2019-11-01 09:29:22 -0700 |
commit | ec681dddfa99894513c85da7d5d257b60d04f915 (patch) | |
tree | 7ed05c87ba72db86c107a42c4d0c5f97eaa06b29 | |
parent | 57414962d42b1e7e65baa86d05913d7a5a5e8393 (diff) | |
download | glibc-ec681dddfa99894513c85da7d5d257b60d04f915.tar.gz glibc-ec681dddfa99894513c85da7d5d257b60d04f915.tar.xz glibc-ec681dddfa99894513c85da7d5d257b60d04f915.zip |
ARC: allow big endian builds
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
-rw-r--r-- | sysdeps/arc/bits/endian.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/arc/bits/endian.h b/sysdeps/arc/bits/endian.h index 46f41e3cff..f2a3b4ecfe 100644 --- a/sysdeps/arc/bits/endian.h +++ b/sysdeps/arc/bits/endian.h @@ -8,5 +8,5 @@ # define __BYTE_ORDER __LITTLE_ENDIAN #endif #ifdef __BIG_ENDIAN__ -# error "Big Endian NOt supported on ARC" +# define __BYTE_ORDER __BIG_ENDIAN #endif |