diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2006-09-12 06:39:27 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2006-09-12 06:39:27 +0000 |
| commit | fc2717a0d2eab5fe675057d25e335a2ff39677b7 (patch) | |
| tree | 2a5403e2caefa9d3daec181b9145453f95fdbafd /gnu/usr.bin/binutils | |
| parent | b2eeeae049cd3176f551e4091aa0c9211dfd06e5 (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/binutils')
| -rw-r--r-- | gnu/usr.bin/binutils/libiberty/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/libiberty/config.h b/gnu/usr.bin/binutils/libiberty/config.h index 13bc9aa6aeb6..190bee5e47c0 100644 --- a/gnu/usr.bin/binutils/libiberty/config.h +++ b/gnu/usr.bin/binutils/libiberty/config.h @@ -7,7 +7,7 @@ /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ -#ifdef __sparc64__ +#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. */ -#ifdef __sparc64__ +#if defined(__sparc64__) || defined(__ARMEB__) || defined(TARGET_BIG_ENDIAN) #define HOST_WORDS_BIG_ENDIAN 1 #endif |
