diff options
author | Roland Stigge <stigge@debian.org> | 2012-12-20 09:57:34 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2012-12-20 09:57:34 +0000 |
commit | 7b8c7831a2482c8a370044f39926f21a3eceb4f3 (patch) | |
tree | 678897b454e725f14cea728970cd82a147b1c752 | |
parent | 64ff24b33ee82bfdef545551709aae354aecf685 (diff) | |
download | gcc-7b8c7831a2482c8a370044f39926f21a3eceb4f3.zip gcc-7b8c7831a2482c8a370044f39926f21a3eceb4f3.tar.gz gcc-7b8c7831a2482c8a370044f39926f21a3eceb4f3.tar.bz2 |
t-spe (MULTIARCH_DIRNAME): Remove.
2012-12-20 Roland Stigge <stigge@debian.org>
Matthias Klose <doko@ubuntu.com>
* config/rs6000/t-spe (MULTIARCH_DIRNAME): Remove.
* config/rs6000/t-linux (MULTIARCH_DIRNAME): Define name for
powerpc-linux-gnuspe.
Co-Authored-By: Matthias Klose <doko@ubuntu.com>
From-SVN: r194629
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/rs6000/t-linux | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/t-spe | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a76488..6d38560 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2012-12-20 Roland Stigge <stigge@debian.org> + Matthias Klose <doko@ubuntu.com> + + * config/rs6000/t-spe (MULTIARCH_DIRNAME): Remove. + * config/rs6000/t-linux (MULTIARCH_DIRNAME): Define name for + powerpc-linux-gnuspe. + 2012-12-19 Matthias Klose <doko@ubuntu.com> * config/i386/t-kfreebsd (MULTIARCH_DIRNAME): Add comma to diff --git a/gcc/config/rs6000/t-linux b/gcc/config/rs6000/t-linux index 3611027..017a293 100644 --- a/gcc/config/rs6000/t-linux +++ b/gcc/config/rs6000/t-linux @@ -1,5 +1,9 @@ # do not define the multiarch name if configured for a soft-float cpu # 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) +else MULTIARCH_DIRNAME = powerpc-linux-gnu endif +endif diff --git a/gcc/config/rs6000/t-spe b/gcc/config/rs6000/t-spe index 90eb802..1bed1e3 100644 --- a/gcc/config/rs6000/t-spe +++ b/gcc/config/rs6000/t-spe @@ -71,7 +71,3 @@ MULTILIB_EXCEPTIONS = maltivec mabi=altivec mno-spe mabi=no-spe mno-isel \ mabi=altivec/mlittle \ maltivec/mlittle \ maltivec/mabi=altivec/mlittle - -ifneq (,$(findstring linux, $(target))) -MULTIARCH_DIRNAME = powerpc-linux-gnuspe$(if $(findstring rs6000/e500-double.h, $(tm_file)),,v1) -endif |