mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
Add aarch64 endianness specification to scm file. (From OE-Core rev: 6ec04f8ceaa02bf6dba586f0858f860b5df60945) Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
561 B
Diff
20 lines
561 B
Diff
guile: add aarch64 recognition
|
|
|
|
Assume little-endian.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: joe.slater@windriver.com
|
|
|
|
--- a/module/system/base/target.scm
|
|
+++ b/module/system/base/target.scm
|
|
@@ -70,6 +70,8 @@
|
|
((member cpu '("sparc" "sparc64" "powerpc" "powerpc64" "spu"
|
|
"mips" "mips64"))
|
|
(endianness big))
|
|
+ ((string-match "^aarch64" cpu)
|
|
+ (endianness little))
|
|
((string-match "^arm.*eb" cpu)
|
|
(endianness big))
|
|
((string-match "^arm.*" cpu)
|