diff options
author | Alan Modra <amodra@gmail.com> | 2001-08-27 10:22:03 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-08-27 10:22:03 +0000 |
commit | 5bd4f1692e429a1f449953e3e645d3591485eca6 (patch) | |
tree | cd5421ff4cc28fee2f241f66512123a9b826f72e /bfd/cpu-powerpc.c | |
parent | aa91b392b36d6e597393893b67623abd5551b5c2 (diff) | |
download | gdb-5bd4f1692e429a1f449953e3e645d3591485eca6.zip gdb-5bd4f1692e429a1f449953e3e645d3591485eca6.tar.gz gdb-5bd4f1692e429a1f449953e3e645d3591485eca6.tar.bz2 |
* config.bfd: Add powerpc64 target. Add powerpc64 vectors to
targ64_selvecs for 32 bit powerpc targets.
* Makefile.am (BFD64_BACKENDS): Add elf64-ppc.lo.
(BFD64_BACKENDS_CFILES): Add elf64-ppc.c.
Run "make dep-am".
* Makefile.in: Regenerate.
* configure.in: Add elf64_powerpc vecs.
* configure: Regenerate.
* cpu-powerpc.c: Default to bfd_mach_ppc_620 entry for 64 bit.
* elf.c (prep_headers): EM_PPC64 for 64 bit ppc elf target.
* targets.c: Add bfd_elf64_powerpc_vec and bfd_elf64_powerpcle_vec.
* elf64-ppc.c: New file.
* reloc.c: Add powerpc64 relocs.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Diffstat (limited to 'bfd/cpu-powerpc.c')
-rw-r--r-- | bfd/cpu-powerpc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/cpu-powerpc.c b/bfd/cpu-powerpc.c index 235ec29..3e7a51c 100644 --- a/bfd/cpu-powerpc.c +++ b/bfd/cpu-powerpc.c @@ -1,5 +1,5 @@ /* BFD PowerPC CPU definition - Copyright 1994, 1995, 1996, 2000 Free Software Foundation, Inc. + Copyright 1994, 1995, 1996, 2000, 2001 Free Software Foundation, Inc. Contributed by Ian Lance Taylor, Cygnus Support. This file is part of BFD, the Binary File Descriptor library. @@ -128,7 +128,7 @@ static const bfd_arch_info_type arch_info_struct[] = "powerpc", "powerpc:620", 3, - false, /* not the default */ + BFD_DEFAULT_TARGET_SIZE == 64, /* default for 64 bit target */ powerpc_compatible, bfd_default_scan, &arch_info_struct[6] @@ -229,7 +229,7 @@ const bfd_arch_info_type bfd_powerpc_arch = "powerpc", "powerpc:common", 3, - true, /* the default */ + BFD_DEFAULT_TARGET_SIZE != 64, /* default for 32 bit target */ powerpc_compatible, bfd_default_scan, &arch_info_struct[0] |