diff options
author | Steve Ellcey <sellcey@imgtec.com> | 2014-11-06 22:29:39 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2014-11-06 22:29:39 +0000 |
commit | 8cfebf8687df425c54d232f727abef949f3cfd05 (patch) | |
tree | 13c38118d13df2f9865da3d3d011e7f3396b8294 /gcc/config/mips/mips.h | |
parent | be5ffc59ad88c5cd1cf6f568ec73001228cf28d5 (diff) | |
download | gcc-8cfebf8687df425c54d232f727abef949f3cfd05.zip gcc-8cfebf8687df425c54d232f727abef949f3cfd05.tar.gz gcc-8cfebf8687df425c54d232f727abef949f3cfd05.tar.bz2 |
config.gcc (mips*-mti-linux*): Remove gnu_ld and gas assignments.
2014-11-06 Steve Ellcey <sellcey@imgtec.com>
* config.gcc (mips*-mti-linux*): Remove gnu_ld and gas assignments.
Set default_mips_arch and default_mips_abi instead of tm_defines.
(mips*-*-linux*): Set default_mips_arch and default_mips_abi instead
of tm_defines.
(mips*-*-*): Check with_arch and with_abi. Set tm_defines.
* config/mips/mips.h (STANDARD_STARTFILE_PREFIX_1): Set default
based on MIPS_ABI_DEFAULT.
(STANDARD_STARTFILE_PREFIX_2): Ditto.
From-SVN: r217203
Diffstat (limited to 'gcc/config/mips/mips.h')
-rw-r--r-- | gcc/config/mips/mips.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 39e6926..dd67f11 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -3006,3 +3006,13 @@ extern GTY(()) struct target_globals *mips16_globals; with arguments ARGS. */ #define PMODE_INSN(NAME, ARGS) \ (Pmode == SImode ? NAME ## _si ARGS : NAME ## _di ARGS) + +/* If we are *not* using multilibs and the default ABI is not ABI_32 we + need to change these from /lib and /usr/lib. */ +#if MIPS_ABI_DEFAULT == ABI_N32 +#define STANDARD_STARTFILE_PREFIX_1 "/lib32/" +#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib32/" +#elif MIPS_ABI_DEFAULT == ABI_64 +#define STANDARD_STARTFILE_PREFIX_1 "/lib64/" +#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib64/" +#endif |