aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2023-03-05 16:53:15 +1300
committerChris Packham <judge.packham@gmail.com>2024-07-29 13:12:59 +1200
commit5d2b316093a3bd348d7902382179d68270a38c3b (patch)
treed5e2596e1d6e66dcf058114f667b734288438a5c
parent240c7a5d4867bbea830cfd6a7476a2f0e118cae3 (diff)
downloadcrosstool-ng-5d2b316093a3bd348d7902382179d68270a38c3b.tar.gz
crosstool-ng-5d2b316093a3bd348d7902382179d68270a38c3b.tar.bz2
crosstool-ng-5d2b316093a3bd348d7902382179d68270a38c3b.zip
binutils: Allow gold for more architectures
Based on the configure.ac for binutils it appears that arm, loongarch, mips, powerpc, s390, sparch and x86 are supported. Expand the list of architectures that gold is allowed to be used on. Signed-off-by: Chris Packham <judge.packham@gmail.com>
-rw-r--r--config/binutils/binutils.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/binutils/binutils.in b/config/binutils/binutils.in
index 338220d0..0744080a 100644
--- a/config/binutils/binutils.in
+++ b/config/binutils/binutils.in
@@ -6,6 +6,11 @@ comment "GNU binutils"
config BINUTILS_GOLD_SUPPORTS_ARCH
bool
default y if ARCH_ARM
+ default y if ARCH_LOONGARCH
+ default y if ARCH_MIPS
+ default y if ARCH_POWERPC
+ default y if ARCH_S390
+ default y if ARCH_SPARC
default y if ARCH_X86
config BINUTILS_GOLD_SUPPORT