diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-05-19 09:48:57 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2013-05-19 09:48:57 +0000 |
commit | c3850d141f813d30b331565f2df47e8b53b730ea (patch) | |
tree | b67550b65ba788ac64c1812ff9263eefa47680c4 | |
parent | b0a7990a9777992230e1d06dde3b6569da624734 (diff) | |
download | gcc-c3850d141f813d30b331565f2df47e8b53b730ea.zip gcc-c3850d141f813d30b331565f2df47e8b53b730ea.tar.gz gcc-c3850d141f813d30b331565f2df47e8b53b730ea.tar.bz2 |
t-sde: Don't build 64-bit microMIPS multilibs.
gcc/
* config/mips/t-sde: Don't build 64-bit microMIPS multilibs.
From-SVN: r199077
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/t-sde | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0649452..b005445 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2013-05-19 Richard Sandiford <rdsandiford@googlemail.com> + + * config/mips/t-sde: Don't build 64-bit microMIPS multilibs. + 2013-05-18 Richard Sandiford <rdsandiford@googlemail.com> * recog.h (Recog_data): Rename to... diff --git a/gcc/config/mips/t-sde b/gcc/config/mips/t-sde index 15f506f..ecdff05 100644 --- a/gcc/config/mips/t-sde +++ b/gcc/config/mips/t-sde @@ -27,9 +27,11 @@ else MULTILIB_EXCLUSIONS := !mips32r2/mfp64 endif -# Don't build 64-bit MIPS16 multilibs. +# Don't build 64-bit MIPS16 and microMIPS multilibs. ifneq ($(filter MIPS_ISA_DEFAULT=6%,$(tm_defines)),) MULTILIB_EXCLUSIONS += !mips32/!mips32r2/mips16 +MULTILIB_EXCLUSIONS += !mips32/!mips32r2/mmicromips else MULTILIB_EXCLUSIONS += mips64/mips16 mips64r2/mips16 +MULTILIB_EXCLUSIONS += mips64/mmicromips mips64r2/mmicromips endif |