diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-01-28 17:58:24 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-01-28 17:58:24 +0000 |
commit | b134237006c3ca03ab8a97e0334257885f578f5c (patch) | |
tree | daf04cb932437d9f82462aa5d8f2bfc21fa347ab /bfd/elfxx-target.h | |
parent | 319850b45155323419e8862ee9e1b20d12b3a62d (diff) | |
download | gdb-b134237006c3ca03ab8a97e0334257885f578f5c.zip gdb-b134237006c3ca03ab8a97e0334257885f578f5c.tar.gz gdb-b134237006c3ca03ab8a97e0334257885f578f5c.tar.bz2 |
* elf-bfd.h (struct elf_backend_data): Add minpagesize.
* elf32-arm.c (ELF_MINPAGESIZE): Define.
* elf32-ppc.c (ELF_MINPAGESIZE): Define.
* elfcode.h (elf_object_p): Use minpagesize instead of
maxpagesize.
* elfxx-target.h (ELF_MINPAGESIZE): Default to ELF_MAXPAGESIZE.
(elfNN_bed): Include ELF_MINPAGESIZE.
Diffstat (limited to 'bfd/elfxx-target.h')
-rw-r--r-- | bfd/elfxx-target.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bfd/elfxx-target.h b/bfd/elfxx-target.h index 81202f8..a9d49c3 100644 --- a/bfd/elfxx-target.h +++ b/bfd/elfxx-target.h @@ -1,6 +1,6 @@ /* Target definitions for NN-bit ELF Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004 Free Software Foundation, Inc. + 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -283,6 +283,10 @@ #define ELF_MAXPAGESIZE 1 #endif +#ifndef ELF_MINPAGESIZE +#define ELF_MINPAGESIZE ELF_MAXPAGESIZE +#endif + #ifndef ELF_DYNAMIC_SEC_FLAGS /* Note that we set the SEC_IN_MEMORY flag for these sections. */ #define ELF_DYNAMIC_SEC_FLAGS \ @@ -519,6 +523,7 @@ static const struct elf_backend_data elfNN_bed = ELF_ARCH, /* arch */ ELF_MACHINE_CODE, /* elf_machine_code */ ELF_MAXPAGESIZE, /* maxpagesize */ + ELF_MINPAGESIZE, /* minpagesize */ ELF_DYNAMIC_SEC_FLAGS, /* dynamic_sec_flags */ elf_info_to_howto, elf_info_to_howto_rel, |