diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-25 20:00:58 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-25 20:00:58 +0000 |
commit | e684d543c44c50358b58ef7ce1d75b0b91bc3af4 (patch) | |
tree | 1237ea1f220b63a543b8b6bbfb91cc83b079fab7 | |
parent | da24c08f2e7bd76ed3d61dd838ece80712f13869 (diff) | |
download | gcc-e684d543c44c50358b58ef7ce1d75b0b91bc3af4.tar.gz |
2012-05-25 Michael Meissner <meissner@linux.vnet.ibm.com>
* config/rs6000/t-linux64: Delete the 32-bit multilib that uses
software floating point emulation. No longer build the multilibs
with -mstrict-align.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@187891 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/rs6000/t-linux64 | 11 |
2 files changed, 10 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f8570fd24d5..d8af885ee33 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-05-25 Michael Meissner <meissner@linux.vnet.ibm.com> + + * config/rs6000/t-linux64: Delete the 32-bit multilib that uses + software floating point emulation. No longer build the multilibs + with -mstrict-align. + 2012-05-25 Aldy Hernandez <aldyh@redhat.com> PR middle-end/53008 diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64 index 6420431214d..fb1af5d8c46 100644 --- a/gcc/config/rs6000/t-linux64 +++ b/gcc/config/rs6000/t-linux64 @@ -26,10 +26,7 @@ # it doesn't tell anything about the 32bit libraries on those systems. Set # MULTILIB_OSDIRNAMES according to what is found on the target. -MULTILIB_OPTIONS = m64/m32 msoft-float -MULTILIB_DIRNAMES = 64 32 nof -MULTILIB_EXTRA_OPTS = fPIC mstrict-align -MULTILIB_EXCEPTIONS = m64/msoft-float -MULTILIB_EXCLUSIONS = m64/!m32/msoft-float -MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib) nof -MULTILIB_MATCHES = $(MULTILIB_MATCHES_FLOAT) +MULTILIB_OPTIONS = m64/m32 +MULTILIB_DIRNAMES = 64 32 +MULTILIB_EXTRA_OPTS = fPIC +MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib) |