diff options
author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-09 04:47:05 +0000 |
---|---|---|
committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-09 04:47:05 +0000 |
commit | 50ec89c7b745311b6c1706e2c6a3076c7bc228b2 (patch) | |
tree | f5bc334f20ba1cd70cd8c751fea4ec5fcbe24798 | |
parent | 482c1ea047598b36a0e4bc3c479722a67d157aef (diff) | |
download | gcc-50ec89c7b745311b6c1706e2c6a3076c7bc228b2.tar.gz |
PR target/39634
* config.gcc (powerpc64-*-linux*): Always build biarch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145795 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.gcc | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index feedc5c4253..581337c9d39 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-04-09 Alan Modra <amodra@bigpond.net.au> + + PR target/39634 + * config.gcc (powerpc64-*-linux*): Always build biarch. + 2009-04-09 Joseph Myers <joseph@codesourcery.com> PR c/39613 diff --git a/gcc/config.gcc b/gcc/config.gcc index 22474245520..21f4920818d 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1806,10 +1806,11 @@ powerpc-*-linux* | powerpc64-*-linux*) ;; powerpc64-*-linux*) test x$with_cpu != x || cpu_is_64bit=yes + maybe_biarch=always ;; esac case ${maybe_biarch}:${enable_targets}:${cpu_is_64bit} in - yes:*powerpc64* | yes:all:* | yes:*:yes) + always:* | yes:*powerpc64* | yes:all:* | yes:*:yes) if test x$cpu_is_64bit = xyes; then tm_file="${tm_file} rs6000/default64.h" fi |