From: Roland Stigge Date: Wed, 12 Jun 2013 13:56:16 +0000 (+0000) Subject: re PR target/57578 (SPE detection broken on Linux (bits/predefs.h: No such file or... X-Git-Tag: releases/gcc-4.9.0~5431 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cddd69eb6d95094c00792899f59ca3d9381b2254;p=thirdparty%2Fgcc.git re PR target/57578 (SPE detection broken on Linux (bits/predefs.h: No such file or directory)) 2013-06-12 Roland Stigge PR target/57578 * config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix SPE version detection. From-SVN: r200012 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5eb96066d638..99e8f506ffe9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-06-12 Roland Stigge + + PR target/57578 + * config/rs6000/t-linux (MULTIARCH_DIRNAME): Fix SPE version detection. + 2013-06-12 Jakub Jelinek PR tree-optimization/57537 diff --git a/gcc/config/rs6000/t-linux b/gcc/config/rs6000/t-linux index 017a293cde30..62a5b9413896 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