From 9b3fa589504692443e3bbef3e4d3c2446c589152 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Tue, 28 Sep 1993 20:44:43 +0000 Subject: [PATCH] * section.c (bfd_make_section_anyway): New function. * section.c: Change comments to say several sections can have the same name. * bfd-in2.h: Re-generate to reflect above change. * coffgen.c (make_a_section_from_file): Call bfd_make_section_anyway if still no section after the bfd_coff_make_section_hook. * coffcode.h: Add comment about TWO_DATA_SECS. --- bfd/bfd-in2.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index 2054de714de..43a3a71ee7d 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -620,6 +620,12 @@ typedef struct sec translate to bfd_com_section), but ECOFF has two. */ #define SEC_IS_COMMON 0x8000 + /* The section contains only debugging information. For + example, this is set for ELF .debug and .stab sections. + strip tests this flag to see if a section can be + discarded. */ +#define SEC_DEBUGGING 0x10000 + /* End of section flags. */ /* The virtual memory address of the section - where it will be @@ -770,7 +776,10 @@ bfd_get_section_by_name PARAMS ((bfd *abfd, CONST char *name)); asection * bfd_make_section_old_way PARAMS ((bfd *, CONST char *name)); -asection * +asection * +bfd_make_section_anyway PARAMS ((bfd *, CONST char *name)); + +asection * bfd_make_section PARAMS ((bfd *, CONST char *name)); boolean @@ -1558,6 +1567,7 @@ struct _bfd struct hpux_core_struct *hpux_core_data; struct sgi_core_struct *sgi_core_data; struct lynx_core_struct *lynx_core_data; + struct osf_core_struct *osf_core_data; PTR any; } tdata; -- 2.30.2