Browse Source

arch/Config.in.arc: fix BR2_READELF_ARCH_NAME

On ARC, depending on the CPU selected, the ELF machine number might be
different. Take this into account when defining BR2_READELF_ARCH_NAME.

Fixes:

   http://autobuild.buildroot.net/results/0a1957056e07cedc4839439c0ea8ebd1f646b904/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas Petazzoni 8 years ago
parent
commit
69f57593ac
1 changed files with 2 additions and 1 deletions
  1. 2 1
      arch/Config.in.arc

+ 2 - 1
arch/Config.in.arc

@@ -39,7 +39,8 @@ config BR2_GCC_TARGET_CPU
 	default "archs"	 if BR2_archs38
 	default "archs"	 if BR2_archs38
 
 
 config BR2_READELF_ARCH_NAME
 config BR2_READELF_ARCH_NAME
-	default "ARCv2"
+	default "ARCompact" 	if BR2_arc750d || BR2_arc770d
+	default "ARCv2"		if BR2_archs38
 
 
 choice
 choice
 	prompt "MMU Page Size"
 	prompt "MMU Page Size"