]> code.ossystems Code Review - openembedded-core.git/blob
b8afb90bfb91c01f173f1f5cbe1300fcc37aee42
[openembedded-core.git] /
1 From 743668f66916b6bb03c92b04be5216400951ace6 Mon Sep 17 00:00:00 2001
2 From: Victor Kamensky <victor.kamensky@linaro.org>
3 Date: Wed, 3 Dec 2014 17:35:43 -0800
4 Subject: [PATCH 1/2] aarch64: introduce build support for aarch64_be target
5
6 Upstream-Status: backport
7
8 Introduce support for aarch64_be, aarch64 big endian, target.
9 We would like to reuse all code that was done for aarch64
10 (little endian) target. So we do similar thing that is done
11 for ARM v7 (arm) target for any aarch64* arch we set it
12 just to aarch64.
13
14 Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org>
15 ---
16  configure.ac | 1 +
17  1 file changed, 1 insertion(+)
18
19 diff --git a/configure.ac b/configure.ac
20 index 582e71f..c59f526 100644
21 --- a/configure.ac
22 +++ b/configure.ac
23 @@ -88,6 +88,7 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
24  
25  AC_DEFUN([SET_ARCH],[
26      AS_CASE([$1],
27 +        [aarch64*],[$2=aarch64],
28          [arm*],[$2=arm],
29          [i?86],[$2=x86],
30          [hppa*],[$2=hppa],
31 -- 
32 1.9.1
33