mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Update the ARM aarch64 external toolchain to the latest 15.2.rel1 release from ARM. This involves: - Updating the version, site URL, and source filename in .mk - Updating the SHA256 hash in .hash - Updating the display name and GCC version dependency in Config.in Verified by booting on a default Qemu configuration. Signed-off-by: Dowan Gullient <dowan.gullient@smile.fr> Signed-off-by: Julien Olivain <ju.o@free.fr>
13 lines
574 B
Makefile
13 lines
574 B
Makefile
################################################################################
|
|
#
|
|
# toolchain-external-arm-aarch64
|
|
#
|
|
################################################################################
|
|
|
|
TOOLCHAIN_EXTERNAL_ARM_AARCH64_VERSION = 15.2.rel1
|
|
TOOLCHAIN_EXTERNAL_ARM_AARCH64_SITE = https://developer.arm.com/-/media/Files/downloads/gnu/$(TOOLCHAIN_EXTERNAL_ARM_AARCH64_VERSION)/binrel
|
|
|
|
TOOLCHAIN_EXTERNAL_ARM_AARCH64_SOURCE = arm-gnu-toolchain-$(TOOLCHAIN_EXTERNAL_ARM_AARCH64_VERSION)-$(HOSTARCH)-aarch64-none-linux-gnu.tar.xz
|
|
|
|
$(eval $(toolchain-external-package))
|