diff options
author | Michael Meissner <gnu@the-meissners.org> | 1996-01-11 22:47:04 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1996-01-11 22:47:04 +0000 |
commit | 83f4323e5a7e590d8ce73c01697826da1bbc604d (patch) | |
tree | dd9652ef14bda29f40bfe8583fcd860b41bb1b32 /bfd/elfxx-target.h | |
parent | 053baeb1565f4bfaf06451a24d6491e6ca325c06 (diff) | |
download | gdb-83f4323e5a7e590d8ce73c01697826da1bbc604d.zip gdb-83f4323e5a7e590d8ce73c01697826da1bbc604d.tar.gz gdb-83f4323e5a7e590d8ce73c01697826da1bbc604d.tar.bz2 |
Add support for SHT_ORDERED and SHF_EXCLUDE
Diffstat (limited to 'bfd/elfxx-target.h')
-rw-r--r-- | bfd/elfxx-target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfxx-target.h b/bfd/elfxx-target.h index 989a1dc..f1573f4 100644 --- a/bfd/elfxx-target.h +++ b/bfd/elfxx-target.h @@ -303,7 +303,7 @@ const bfd_target TARGET_BIG_SYM = /* section_flags: mask of all section flags */ (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY | - SEC_CODE | SEC_DATA | SEC_DEBUGGING), + SEC_CODE | SEC_DATA | SEC_DEBUGGING | SEC_EXCLUDE | SEC_SORT_ENTRIES), /* leading_symbol_char: is the first char of a user symbol predictable, and if so what is it */ @@ -387,7 +387,7 @@ const bfd_target TARGET_LITTLE_SYM = /* section_flags: mask of all section flags */ (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY | - SEC_CODE | SEC_DATA | SEC_DEBUGGING), + SEC_CODE | SEC_DATA | SEC_DEBUGGING | SEC_EXCLUDE | SEC_SORT_ENTRIES), /* leading_symbol_char: is the first char of a user symbol predictable, and if so what is it */ |