From b5f676313ad8d36bd685e039f36466e1fe8ffc61 Mon Sep 17 00:00:00 2001 From: Philippe Coval Date: Wed, 28 Sep 2016 14:07:16 +0200 Subject: [PATCH] linux: Support also armeabi-v7a TARGET_ARCH This EABI is used in Tizen, this way iotivity can be rebuild on Tizen using "linux" profile (TARGET_OS). For instance unsupported older tizen profiles can be rebuilt using gbs (ie Tizen:2.3:Wearable). Change-Id: Ia84cb173add8efbb10cb2a9632a7637cf6202114 Origin: https://gerrit.iotivity.org/gerrit/#/c/12417/ Signed-off-by: Philippe Coval Reviewed-on: https://gerrit.iotivity.org/gerrit/12417 Tested-by: jenkins-iotivity Reviewed-by: Jaehong Jo Reviewed-by: Uze Choi Reviewed-on: https://gerrit.iotivity.org/gerrit/13613 --- build_common/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_common/SConscript b/build_common/SConscript index 6eb42ea..f89a8d3 100644 --- a/build_common/SConscript +++ b/build_common/SConscript @@ -18,7 +18,7 @@ host_target_map = { # Map of os and allowed archs (os: allowed archs) os_arch_map = { - 'linux': ['x86', 'x86_64', 'arm', 'arm-v7a', 'arm64'], + 'linux': ['x86', 'x86_64', 'arm', 'arm-v7a', 'armeabi-v7a', 'arm64'], 'tizen': ['x86', 'x86_64', 'arm', 'arm-v7a', 'armeabi-v7a', 'arm64'], 'android': ['x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'armeabi-v7a-hard', 'arm64-v8a'], 'windows': ['x86', 'amd64', 'arm'], -- 2.7.4