971a13472d
Sync external prebuilt toolchain with the one we now build in Buildroot, i.e. arc-2016.09. Since that prebuilt toolchain finally has IPv6 enabled it works pretty fine for building packages in Buildroot. Still note: 1) There might be subtle differences between uClibc configuration compared to Buildroot's one. 2) A couple of patches we apply on top of Builroot-built toolchain are obviously missing in the prebuilt version - they will be available in the next release. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Vlad Zakharov <vzakhar@synopsys.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
952 B
Makefile
25 lines
952 B
Makefile
################################################################################
|
|
#
|
|
# toolchain-external-synopsys-arc
|
|
#
|
|
################################################################################
|
|
|
|
TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_VERSION = 2016.09
|
|
TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_SITE = https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/download/arc-$(TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_VERSION)-release
|
|
|
|
ifeq ($(BR2_arc750d)$(BR2_arc770d),y)
|
|
TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_CORE = arc700
|
|
else
|
|
TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_CORE = archs
|
|
endif
|
|
|
|
ifeq ($(BR2_arcle),y)
|
|
TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_ENDIANESS = le
|
|
else
|
|
TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_ENDIANESS = be
|
|
endif
|
|
|
|
TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_SOURCE = arc_gnu_$(TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_VERSION)_prebuilt_uclibc_$(TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_ENDIANESS)_$(TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC_CORE)_linux_install.tar.gz
|
|
|
|
$(eval $(toolchain-external-package))
|