]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
arc: use more universal prefix for default CROSS_COMPILE
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 13 May 2015 09:49:31 +0000 (18:49 +0900)
committerAlexey Brodkin <abrodkin@synopsys.com>
Wed, 13 May 2015 10:44:25 +0000 (13:44 +0300)
As doc/README.ARC says, pre-build ARC toolchains are available at
the Synopsys GitHub page.

The bin files are prefixed with arc(eb)-buildroot-linux- for earlier
releases, but with arc(eb)-snps-linux- for the latest releases.

The symbolic links prefixed with arc(eb)-linux- are also available
for all the release, so those prefixes can be used as the default
CROSS_COMPILE regardless of the toolchains version/variants.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
arch/arc/config.mk

index 04c034b637e51b24de3e25d053612e7f2b3c5ae3..74943d9ffe5cd55bf1bb82ff52cae313a9206daa 100644 (file)
@@ -11,13 +11,13 @@ CONFIG_SYS_BIG_ENDIAN = 1
 endif
 
 ifdef CONFIG_SYS_LITTLE_ENDIAN
-ARC_CROSS_COMPILE := arc-buildroot-linux-uclibc-
+ARC_CROSS_COMPILE := arc-linux-
 PLATFORM_LDFLAGS += -EL
 PLATFORM_CPPFLAGS += -mlittle-endian
 endif
 
 ifdef CONFIG_SYS_BIG_ENDIAN
-ARC_CROSS_COMPILE := arceb-buildroot-linux-uclibc-
+ARC_CROSS_COMPILE := arceb-linux-
 PLATFORM_LDFLAGS += -EB
 PLATFORM_CPPFLAGS += -mbig-endian
 endif