diff options
author | Andreas Tobler <andreast@fgznet.ch> | 2012-09-29 12:28:24 +0200 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2012-09-29 12:28:24 +0200 |
commit | 252a969e5d82ed24a21f87b57e28307146fe2678 (patch) | |
tree | 4d19a69651c97b58f3935f47c63ddcfb4f90d7bb /gcc | |
parent | ae22ac3c62db451bae04a239d7b8c8b289e14ee7 (diff) | |
download | gcc-252a969e5d82ed24a21f87b57e28307146fe2678.zip gcc-252a969e5d82ed24a21f87b57e28307146fe2678.tar.gz gcc-252a969e5d82ed24a21f87b57e28307146fe2678.tar.bz2 |
config.gcc: Replace 'host' with 'target' when configuring for powerpc64*-*-freebsd.
2012-09-29 Andreas Tobler <andreast@fgznet.ch>
* config.gcc: Replace 'host' with 'target' when configuring for
powerpc64*-*-freebsd.
From-SVN: r191849
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.gcc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e6a2cdb..068a264 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-09-29 Andreas Tobler <andreast@fgznet.ch> + + * config.gcc: Replace 'host' with 'target' when configuring for + powerpc64*-*-freebsd. + 2012-09-29 Marc Glisse <marc.glisse@inria.fr> * tree.c (truth_type_for): New function. diff --git a/gcc/config.gcc b/gcc/config.gcc index d6c8153..097d456 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1919,7 +1919,7 @@ powerpc*-*-freebsd*) tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h" extra_options="${extra_options} rs6000/sysv4.opt" tmake_file="rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" - case ${host} in + case ${target} in powerpc64*) tm_file="${tm_file} rs6000/default64.h rs6000/freebsd64.h" tmake_file="${tmake_file} rs6000/t-freebsd64" |