diff options
author | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-06-12 13:56:16 +0000 |
---|---|---|
committer | doko <doko@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-06-12 13:56:16 +0000 |
commit | e7346145bb0b03d1e7b810bd308024f8ae5425cd (patch) | |
tree | b17036cd3982150c621c1db65307b039ebd8f560 | |
parent | 774e84a77c42e47f487b56f689077c6be4d3d98b (diff) | |
download | gcc-e7346145bb0b03d1e7b810bd308024f8ae5425cd.tar.gz |
2013-06-12 Roland Stigge <stigge@antcom.de>
PR target/57578
* config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix SPE version detection.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@200012 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/t-linux | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5eb96066d63..99e8f506ffe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-06-12 Roland Stigge <stigge@antcom.de> + + PR target/57578 + * config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix SPE version detection. + 2013-06-12 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/57537 diff --git a/gcc/config/rs6000/t-linux b/gcc/config/rs6000/t-linux index 017a293cde3..62a5b941389 100644 --- a/gcc/config/rs6000/t-linux +++ b/gcc/config/rs6000/t-linux @@ -2,7 +2,7 @@ # or soft-float. ifeq (,$(filter $(with_cpu),$(SOFT_FLOAT_CPUS))$(findstring soft,$(with_float))) ifneq (,$(findstring spe,$(target))) -MULTIARCH_DIRNAME = powerpc-linux-gnuspe$(if $(findstring rs6000/e500-double.h, $(tm_file_list)),,v1) +MULTIARCH_DIRNAME = powerpc-linux-gnuspe$(if $(findstring 8548,$(with_cpu)),,v1) else MULTIARCH_DIRNAME = powerpc-linux-gnu endif |