diff options
author | YunQiang Su <yunqiang.su@cipunited.com> | 2023-08-27 23:27:00 -0400 |
---|---|---|
committer | YunQiang Su <yunqiang.su@cipunited.com> | 2023-08-27 23:43:30 -0400 |
commit | d6cdc0af2b880bb48dd16055f4cb3509c7a2da70 (patch) | |
tree | 52d574d7ff6dc021daf1100430559e2263284c0d | |
parent | adb3ae2eba78b4b84d7b94342f6774b250190a98 (diff) | |
download | gdb-d6cdc0af2b880bb48dd16055f4cb3509c7a2da70.zip gdb-d6cdc0af2b880bb48dd16055f4cb3509c7a2da70.tar.gz gdb-d6cdc0af2b880bb48dd16055f4cb3509c7a2da70.tar.bz2 |
Gold/MIPS: Add targ_extra_size=64 for mips32 triples
So we can enable 64bit ELF support for MIPS32 toolchain.
-rw-r--r-- | gold/configure.tgt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/configure.tgt b/gold/configure.tgt index 8f0f21b..4b16634 100644 --- a/gold/configure.tgt +++ b/gold/configure.tgt @@ -157,6 +157,7 @@ mips*el-*-*) targ_obj=mips targ_machine=EM_MIPS targ_size=32 + targ_extra_size=64 targ_big_endian=false targ_extra_big_endian=true ;; @@ -164,6 +165,7 @@ mips*-*-*) targ_obj=mips targ_machine=EM_MIPS targ_size=32 + targ_extra_size=64 targ_big_endian=true targ_extra_little_endian=true ;; |