mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Update the ARM 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>
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
comment "Arm toolchains available for Cortex-A with NEON + EABIhf"
|
|
depends on BR2_arm
|
|
depends on !BR2_ARM_CPU_ARMV7A || !BR2_ARM_EABIHF || !BR2_ARM_CPU_HAS_NEON
|
|
|
|
config BR2_TOOLCHAIN_EXTERNAL_ARM_ARM
|
|
bool "Arm ARM 15.2.rel1"
|
|
depends on BR2_arm
|
|
depends on BR2_ARM_CPU_ARMV7A || BR2_ARM_CPU_ARMV8A
|
|
depends on BR2_ARM_CPU_HAS_NEON
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "aarch64"
|
|
depends on BR2_ARM_EABIHF
|
|
depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_16
|
|
select BR2_TOOLCHAIN_EXTERNAL_GLIBC
|
|
select BR2_TOOLCHAIN_HAS_SSP
|
|
select BR2_INSTALL_LIBSTDCPP
|
|
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
|
|
select BR2_TOOLCHAIN_GCC_AT_LEAST_15
|
|
select BR2_TOOLCHAIN_HAS_FORTRAN
|
|
select BR2_TOOLCHAIN_HAS_OPENMP
|
|
help
|
|
Arm toolchain for the ARM architecture. It uses GCC 14.2,
|
|
GDB 15, glibc 2.40, Binutils 2.43. It generates code
|
|
that runs on all Cortex-A profile devices. The code
|
|
generated uses the hard floating point calling convention,
|
|
and uses the NEON FPU instructions.
|
|
|
|
This is the same toolchain that was previously distributed by
|
|
Linaro.
|
|
|
|
https://developer.arm.com/open-source/gnu-toolchain
|