diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-02-10 09:15:08 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-02-10 09:15:08 +0000 |
commit | d457dcf69843196978118f12d749e8aa284202a0 (patch) | |
tree | e6d6b604c932bd69f589f55294e7ac5423bec233 /bfd/bfd-in2.h | |
parent | 0dffe982d81812ed9d480dcfcdf3fb1f28ae96e2 (diff) | |
download | gdb-d457dcf69843196978118f12d749e8aa284202a0.zip gdb-d457dcf69843196978118f12d749e8aa284202a0.tar.gz gdb-d457dcf69843196978118f12d749e8aa284202a0.tar.bz2 |
* bfd-in.h (BFD_LINKER_CREATED): Define.
* bfd-in2.h: Rebuilt.
* elflink.c (bfd_elf_size_dynamic_sections): Disregard
BFD_LINKER_CREATED bfds when determining input bfds without
.note.GNU-stack section.
* emultempl/hppaelf.em (hppaelf_create_output_section_statements):
Set BFD_LINKER_CREATED on the stubs bfd.
* emultempl/ppc64elf.em (ppc_create_output_section_statements):
Likewise.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index da2d8cc..8afe498 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -8,7 +8,7 @@ /* Main header file for the bfd library -- portable access to object files. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. Contributed by Cygnus Support. @@ -245,6 +245,10 @@ bfd_format; /* The sections in this BFD specify a memory page. */ #define HAS_LOAD_PAGE 0x1000 + +/* This BFD has been created by the linker and doesn't correspond + to any input file. */ +#define BFD_LINKER_CREATED 0x2000 /* Symbols and relocation. */ |