diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2003-11-12 23:03:56 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2003-11-12 23:03:56 +0000 |
commit | c4740d5df9075966675c668c69be1a8eb1a297c7 (patch) | |
tree | 88ace5a3cf42e5eab8fa969606881799c3d85974 | |
parent | d1d0c603c48e38c8b0c25cf78427e5b0475419f1 (diff) | |
download | gcc-c4740d5df9075966675c668c69be1a8eb1a297c7.zip gcc-c4740d5df9075966675c668c69be1a8eb1a297c7.tar.gz gcc-c4740d5df9075966675c668c69be1a8eb1a297c7.tar.bz2 |
re PR bootstrap/12752 (irix bootstrap failure - genmultilib)
PR bootstrap/12752
* config/mips/t-iris6 (MULTILIB_OPTIONS): Put -mabi=n32 first.
(MULTILIB_OSDIRNAMES): Reorder accordingly.
From-SVN: r73518
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/mips/t-iris6 | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dfb51cf..1fca412 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-11-12 Richard Sandiford <rsandifo@redhat.com> + + PR bootstrap/12752 + * config/mips/t-iris6 (MULTILIB_OPTIONS): Put -mabi=n32 first. + (MULTILIB_OSDIRNAMES): Reorder accordingly. + 2003-11-12 Janis Johnson <janis187@us.ibm.com> * rs6000-protos.h (rs6000_initial_elimination_offset): Add. diff --git a/gcc/config/mips/t-iris6 b/gcc/config/mips/t-iris6 index d157b3a..0af6374 100644 --- a/gcc/config/mips/t-iris6 +++ b/gcc/config/mips/t-iris6 @@ -1,9 +1,9 @@ # ??? If no mabi=X option given, but a mipsX option is, then should deal # with that. -MULTILIB_OPTIONS=mabi=32/mabi=n32/mabi=64 +MULTILIB_OPTIONS=mabi=n32/mabi=32/mabi=64 MULTILIB_DIRNAMES= MULTILIB_MATCHES= -MULTILIB_OSDIRNAMES=mabi=32 . mabi=64 +MULTILIB_OSDIRNAMES=. mabi=32 mabi=64 LIBGCC = stmp-multilib INSTALL_LIBGCC = install-multilib |