diff options
author | Ying Huang <ying.huang@oss.cipunited.com> | 2023-11-10 14:03:17 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2023-11-10 14:03:17 +0000 |
commit | d173146d9b0051e9d691258ac68b9bd5575d0651 (patch) | |
tree | 26821429ecb563d2b930d2582ab89394826d4afd /gas/configure | |
parent | e922d1eaa3774a68c96eae01e0fd08f8a30cda8c (diff) | |
download | gdb-d173146d9b0051e9d691258ac68b9bd5575d0651.zip gdb-d173146d9b0051e9d691258ac68b9bd5575d0651.tar.gz gdb-d173146d9b0051e9d691258ac68b9bd5575d0651.tar.bz2 |
MIPS: Change all E_MIPS_* to EF_MIPS_*
Diffstat (limited to 'gas/configure')
-rwxr-xr-x | gas/configure | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/configure b/gas/configure index 3c80fe5..a012b71 100755 --- a/gas/configure +++ b/gas/configure @@ -12234,14 +12234,14 @@ _ACEOF as_fn_error $? "$target_cpu isn't a supported MIPS CPU name" "$LINENO" 5 ;; esac - # See whether it's appropriate to set E_MIPS_ABI_O32 for o32 + # See whether it's appropriate to set EF_MIPS_ABI_O32 for o32 # binaries. It's a GNU extension that some OSes don't understand. case ${target} in *-*-irix*) - use_e_mips_abi_o32=0 + use_ef_mips_abi_o32=0 ;; *) - use_e_mips_abi_o32=1 + use_ef_mips_abi_o32=1 ;; esac # Decide whether to generate 32-bit or 64-bit code by default. @@ -12277,7 +12277,7 @@ _ACEOF cat >>confdefs.h <<_ACEOF -#define USE_E_MIPS_ABI_O32 $use_e_mips_abi_o32 +#define USE_EF_MIPS_ABI_O32 $use_ef_mips_abi_o32 _ACEOF |