mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
See: https://sourceware.org/pipermail/binutils/2023-January/125671.html Disable zstd support to avoid adding a new dependency. Add Upstream tag on each binutils patches: 0001-sh-conf.patch: Buildroot specific since we are carrying this patch for years. 0002-poison-system-directories.patch: Add the Buildroot Upstream tag Remove 0003-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch since it was rejected by upstream [1] and actually only needed for binutils < 2.37. Binutils 2.37 replaced AC_PROG_CC with AC_PROG_CC_C99 in top level configure file [2]. [1] https://sourceware.org/pipermail/binutils/2021-June/116907.html [2] https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=a8d6316b67d52eaa1b7b311084ddff71a66f7cc0 Runtime tested: https://gitlab.com/kubu93/buildroot/-/pipelines/895618463 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
comment "Binutils Options"
|
|
|
|
config BR2_PACKAGE_HOST_BINUTILS_SUPPORTS_CFI
|
|
bool
|
|
default y
|
|
depends on !BR2_microblaze
|
|
|
|
choice
|
|
prompt "Binutils Version"
|
|
default BR2_BINUTILS_VERSION_2_38_X if !BR2_arc
|
|
default BR2_BINUTILS_VERSION_ARC if BR2_arc
|
|
help
|
|
Select the version of binutils you wish to use.
|
|
|
|
config BR2_BINUTILS_VERSION_2_37_X
|
|
bool "binutils 2.37"
|
|
# AVX512FP16 instructions were not supported before binutils
|
|
# 2.38
|
|
depends on !BR2_X86_CPU_HAS_AVX512
|
|
|
|
config BR2_BINUTILS_VERSION_2_38_X
|
|
bool "binutils 2.38"
|
|
|
|
config BR2_BINUTILS_VERSION_2_39_X
|
|
bool "binutils 2.39"
|
|
|
|
config BR2_BINUTILS_VERSION_2_40_X
|
|
bool "binutils 2.40"
|
|
|
|
config BR2_BINUTILS_VERSION_ARC
|
|
bool "binutils arc (2.34.50)"
|
|
depends on BR2_arc
|
|
|
|
endchoice
|
|
|
|
config BR2_BINUTILS_VERSION
|
|
string
|
|
default "arc-2020.09-release" if BR2_BINUTILS_VERSION_ARC
|
|
default "2.37" if BR2_BINUTILS_VERSION_2_37_X
|
|
default "2.38" if BR2_BINUTILS_VERSION_2_38_X
|
|
default "2.39" if BR2_BINUTILS_VERSION_2_39_X
|
|
default "2.40" if BR2_BINUTILS_VERSION_2_40_X
|
|
|
|
config BR2_BINUTILS_GPROFNG
|
|
bool "gprofng support"
|
|
depends on !BR2_BINUTILS_VERSION_ARC
|
|
depends on !BR2_BINUTILS_VERSION_2_37_X
|
|
depends on !BR2_BINUTILS_VERSION_2_38_X
|
|
help
|
|
This option enables support for gprofng, a new profiler.
|
|
|
|
config BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
|
|
string "Additional binutils options"
|
|
default ""
|
|
help
|
|
Any additional binutils options you may want to include.
|