diff options
author | YunQiang Su <yunqiang.su@cipunited.com> | 2023-08-21 01:14:57 +0800 |
---|---|---|
committer | YunQiang Su <yunqiang.su@cipunited.com> | 2023-08-27 23:43:30 -0400 |
commit | 025e84f93566c8ced594ef48ddee1dec7e5b4cdd (patch) | |
tree | 530487963aa07ba0e1fd92b0667312c3b135c177 /gold | |
parent | 5c4cdba100b66e2924a25dad9b12d8e5b84d527f (diff) | |
download | gdb-025e84f93566c8ced594ef48ddee1dec7e5b4cdd.zip gdb-025e84f93566c8ced594ef48ddee1dec7e5b4cdd.tar.gz gdb-025e84f93566c8ced594ef48ddee1dec7e5b4cdd.tar.bz2 |
MIPS: Use 64-bit a ABI by default for `mipsisa64*-*-linux*' targets
Following the arrangement in GCC select a 64-bit ABI by default, either
n32 or n64, rather than o32 for `mipsisa64*-*-linux*' targets, just as
with the corresponding `mips64*-*-linux*' targets.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/configure.tgt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/configure.tgt b/gold/configure.tgt index e2e131b..99a5fcc 100644 --- a/gold/configure.tgt +++ b/gold/configure.tgt @@ -153,7 +153,7 @@ aarch64*-*) targ_big_endian=false targ_extra_big_endian=true ;; -mips64*el-*-*) +mips64*el-*-* | mipsisa64*el-linux*) targ_obj=mips targ_machine=EM_MIPS targ_size=64 @@ -169,7 +169,7 @@ mips*el-*-*) targ_big_endian=false targ_extra_big_endian=true ;; -mips64*-*-*) +mips64*-*-* | mipsisa64*-linux*) targ_obj=mips targ_machine=EM_MIPS targ_size=64 |