diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-24 20:32:23 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-24 20:32:23 +0000 |
commit | e051ca41f094b4e87028559001ecd32ac255629c (patch) | |
tree | 6a4bdc8f9a8e07b863cf66c5d533288226ac897a | |
parent | cb2b71463e9b5de096d3b6afb690f3d17130f5e6 (diff) | |
download | gcc-e051ca41f094b4e87028559001ecd32ac255629c.tar.gz |
Fix aix --with-gnu-ld configuration bug.
* configure.in (rs6000-ibm-aix4.[12]*): Delete use of aix41-gld.h.
Add use of x-aix41-gld.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27130 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 14 | ||||
-rw-r--r-- | gcc/configure.in | 14 |
3 files changed, 19 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 96eb8d6a364..a207e8ae736 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon May 24 20:30:08 1999 Jim Wilson <wilson@cygnus.com> + + * configure.in (rs6000-ibm-aix4.[12]*): Delete use of aix41-gld.h. + Add use of x-aix41-gld. + Mon May 24 16:44:09 1999 Jakub Jelinek <jj@ultra.linux.cz> * sparc/linux64.h (ASM_OUTPUT_CONSTRUCTOR): Define. diff --git a/gcc/configure b/gcc/configure index 5c44d856d73..04c63e713a3 100755 --- a/gcc/configure +++ b/gcc/configure @@ -5229,19 +5229,19 @@ for machine in $build $host $target; do use_collect2=yes ;; rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*) - if test "$gnu_ld" = yes - then - tm_file=rs6000/aix41-gld.h - else - tm_file=rs6000/aix41.h - fi + tm_file=rs6000/aix41.h if test x$host != x$target then tmake_file=rs6000/t-xnewas else tmake_file=rs6000/t-newas fi - xmake_file=rs6000/x-aix41 + if test "$gnu_ld" = yes + then + xmake_file=rs6000/x-aix41-gld + else + xmake_file=rx6000/x-aix41 + fi float_format=none use_collect2=yes ;; diff --git a/gcc/configure.in b/gcc/configure.in index d9cd396b1d5..303aa6bc451 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -2920,19 +2920,19 @@ changequote([,])dnl changequote(,)dnl rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*) changequote([,])dnl - if test "$gnu_ld" = yes - then - tm_file=rs6000/aix41-gld.h - else - tm_file=rs6000/aix41.h - fi + tm_file=rs6000/aix41.h if test x$host != x$target then tmake_file=rs6000/t-xnewas else tmake_file=rs6000/t-newas fi - xmake_file=rs6000/x-aix41 + if test "$gnu_ld" = yes + then + xmake_file=rs6000/x-aix41-gld + else + xmake_file=rx6000/x-aix41 + fi float_format=none use_collect2=yes ;; |