From 633f20002e4184e91ead8599fcc557e9fd17e1e0 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Thu, 21 Apr 2016 21:52:45 +0200 Subject: i386: properly define BR2_ARCH for all x86 subarchitectures We were not defining BR2_ARCH for two of the x86 subarchitecture, which means the architecture part of the GNU_TARGET_NAME tuple was empty, leading to weird build failures. This commit fixes that by defining the appropriate values. Fixes bug #8861. Signed-off-by: Thomas Petazzoni Reviewed-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Thomas Petazzoni --- arch/Config.in.x86 | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch') diff --git a/arch/Config.in.x86 b/arch/Config.in.x86 index 4039db817..efa956781 100644 --- a/arch/Config.in.x86 +++ b/arch/Config.in.x86 @@ -226,6 +226,8 @@ config BR2_ARCH default "i686" if BR2_x86_nocona && BR2_i386 default "i686" if BR2_x86_core2 && BR2_i386 default "i686" if BR2_x86_corei7 && BR2_i386 + default "i686" if BR2_x86_corei7_avx && BR2_i386 + default "i686" if BR2_x86_corei7_avx2 && BR2_i386 default "i686" if BR2_x86_atom && BR2_i386 default "i686" if BR2_x86_opteron && BR2_i386 default "i686" if BR2_x86_opteron_sse3 && BR2_i386 -- cgit v1.2.3