diff options
author | YunQiang Su <yunqiang.su@cipunited.com> | 2023-08-20 22:58:37 +0800 |
---|---|---|
committer | YunQiang Su <yunqiang.su@cipunited.com> | 2023-08-27 23:43:30 -0400 |
commit | adb3ae2eba78b4b84d7b94342f6774b250190a98 (patch) | |
tree | 92cefbb5b70385f99f35e426f6e28ee7e2d2c243 /gold | |
parent | 39834263784567c306fbccb8230ddd1badca53fe (diff) | |
download | binutils-adb3ae2eba78b4b84d7b94342f6774b250190a98.zip binutils-adb3ae2eba78b4b84d7b94342f6774b250190a98.tar.gz binutils-adb3ae2eba78b4b84d7b94342f6774b250190a98.tar.bz2 |
Gold/MIPS: Drop mips*le/mips*el* triple pattern
Only mips*el triples are supported by binutils. The mips*le
or mips*el* may cause some problem with other components of
binutils, since they will consider them as big endian.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/configure.tgt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/configure.tgt b/gold/configure.tgt index 996bc90..8f0f21b 100644 --- a/gold/configure.tgt +++ b/gold/configure.tgt @@ -153,7 +153,7 @@ aarch64*-*) targ_big_endian=false targ_extra_big_endian=true ;; -mips*el*-*-*|mips*le*-*-*) +mips*el-*-*) targ_obj=mips targ_machine=EM_MIPS targ_size=32 |