Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | Support form ARM endianness |
| 2 | |
| 3 | Fixes Yocto bug# 2729 |
| 4 | |
| 5 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 6 | |
| 7 | Upstream-Status: Pending |
| 8 | |
| 9 | Index: guile-2.0.5/module/system/base/target.scm |
| 10 | =================================================================== |
| 11 | --- guile-2.0.5.orig/module/system/base/target.scm 2012-01-24 03:06:06.000000000 -0800 |
| 12 | +++ guile-2.0.5/module/system/base/target.scm 2012-07-12 13:05:44.372364103 -0700 |
| 13 | @@ -70,7 +70,9 @@ |
| 14 | ((member cpu '("sparc" "sparc64" "powerpc" "powerpc64" "spu" |
| 15 | "mips" "mips64")) |
| 16 | (endianness big)) |
| 17 | - ((string-match "^arm.*el" cpu) |
| 18 | + ((string-match "^arm.*eb" cpu) |
| 19 | + (endianness big)) |
| 20 | + ((string-match "^arm.*" cpu) |
| 21 | (endianness little)) |
| 22 | (else |
| 23 | (error "unknown CPU endianness" cpu))))) |