This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] Fix bfd config problem on aix


The rs6000coff64_vec needs to always be compiled in for powerpc-*-aix targets
because AIX mixes 32 and 64 objects its big archive format.  

This reverts part of an earlier patch. 

-- 
Tom Rix 
GCC Engineer
trix@redhat.com
256.704.9201
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/bfd/ChangeLog,v
retrieving revision 1.1010
diff -c -p -r1.1010 ChangeLog
*** ChangeLog	2001/08/27 18:04:37	1.1010
--- ChangeLog	2001/08/28 22:16:30
***************
*** 1158,1166 ****
  
  2001-06-02  H.J. Lu  <hjl@gnu.org>
  
! 	* config.bfd (powerpc-*-aix*, powerpc-*-beos*, rs6000-*-*): Add
! 	rs6000coff64_vec only if BFD64 is defined.
! 	(powerpc64-*-aix*): Enable only if BFD64 is defined.
  
  2001-06-02  H.J. Lu  <hjl@gnu.org>
  
--- 1163,1169 ----
  
  2001-06-02  H.J. Lu  <hjl@gnu.org>
  
! 	* config.bfd (powerpc64-*-aix*): Enable only if BFD64 is defined.
  
  2001-06-02  H.J. Lu  <hjl@gnu.org>
  
Index: config.bfd
===================================================================
RCS file: /cvs/src/src/bfd/config.bfd,v
retrieving revision 1.63
diff -c -p -r1.63 config.bfd
*** config.bfd	2001/08/27 10:22:03	1.63
--- config.bfd	2001/08/28 22:16:30
*************** case "${targ}" in
*** 727,733 ****
  
    powerpc-*-aix* | powerpc-*-beos* | rs6000-*-*)
      targ_defvec=rs6000coff_vec
!     targ64_selvecs="rs6000coff64_vec"
      ;;
  #ifdef BFD64
    powerpc64-*-aix*)
--- 727,733 ----
  
    powerpc-*-aix* | powerpc-*-beos* | rs6000-*-*)
      targ_defvec=rs6000coff_vec
!     targ_selvecs="rs6000coff64_vec"
      ;;
  #ifdef BFD64
    powerpc64-*-aix*)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]