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 config.bfd


I checked in this patch.


H.J.
---
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.

Index: config.bfd
===================================================================
RCS file: /work/cvs/gnu/binutils/bfd/config.bfd,v
retrieving revision 1.42
diff -u -p -r1.42 config.bfd
--- config.bfd	2001/05/25 06:17:01	1.42
+++ config.bfd	2001/06/02 17:27:14
@@ -723,12 +723,16 @@ case "${targ}" in
 
   powerpc-*-aix* | powerpc-*-beos* | rs6000-*-*)
     targ_defvec=rs6000coff_vec
+#ifdef BFD64
     targ_selvecs="rs6000coff64_vec"
+#endif
     ;;
+#ifdef BFD64
   powerpc64-*-aix*)
     targ_defvec=rs6000coff64_vec
     targ_selvecs="rs6000coff_vec"
     ;;
+#endif
   powerpc-*-*bsd* | powerpc-*-elf* | powerpc-*-sysv4* | powerpc-*-eabi* | \
   powerpc-*-solaris2* | powerpc-*-linux-gnu* | powerpc-*-rtems* | \
   powerpc-*-chorus* | powerpc-*-vxworks*)


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