summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-05-19 09:48:57 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-05-19 09:48:57 +0000
commit28763a151e51454528560dd0c87669908350669e (patch)
treeb67550b65ba788ac64c1812ff9263eefa47680c4 /gcc
parenta3abb477eb76887de1efadf70a50a6908a763842 (diff)
downloadgcc-28763a151e51454528560dd0c87669908350669e.tar.gz
gcc/
* config/mips/t-sde: Don't build 64-bit microMIPS multilibs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@199077 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/mips/t-sde4
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0649452aacf..b005445eb3a 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 15f506f8afe..ecdff0539bd 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