diff options
author | DJ Delorie <dj@redhat.com> | 2001-03-30 01:34:54 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-03-30 01:34:54 +0000 |
commit | bee723322c56ee34f9f511e901171e8ebfe5d22e (patch) | |
tree | 3c3b68aae67419e1f98bd3e5ff3d3045a437ef8b /binutils/dlltool.c | |
parent | f1467e3315649f7b5ff3d223b4618e6b79b17107 (diff) | |
download | gdb-bee723322c56ee34f9f511e901171e8ebfe5d22e.zip gdb-bee723322c56ee34f9f511e901171e8ebfe5d22e.tar.gz gdb-bee723322c56ee34f9f511e901171e8ebfe5d22e.tar.bz2 |
* dlltool.c (make_one_lib_file): Fix section flags for
.text, .data and .bss in stub ds*.o files to match those
generated by gas.
Diffstat (limited to 'binutils/dlltool.c')
-rw-r--r-- | binutils/dlltool.c | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/binutils/dlltool.c b/binutils/dlltool.c index ca6199a..a92688c 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -2076,16 +2076,22 @@ typedef struct #define NSECS 7 -#define INIT_SEC_DATA(id, name, flags, align) { id, name, flags, align, NULL, NULL, NULL, 0, NULL } +#define TEXT_SEC_FLAGS \ + (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY | SEC_HAS_CONTENTS) +#define DATA_SEC_FLAGS (SEC_ALLOC | SEC_LOAD | SEC_DATA) +#define BSS_SEC_FLAGS SEC_ALLOC + +#define INIT_SEC_DATA(id, name, flags, align) \ + { id, name, flags, align, NULL, NULL, NULL, 0, NULL } static sinfo secdata[NSECS] = { - INIT_SEC_DATA (TEXT, ".text", SEC_CODE | SEC_HAS_CONTENTS, 2), - INIT_SEC_DATA (DATA, ".data", SEC_DATA, 2), - INIT_SEC_DATA (BSS, ".bss", 0, 2), - INIT_SEC_DATA (IDATA7, ".idata$7", SEC_HAS_CONTENTS, 2), - INIT_SEC_DATA (IDATA5, ".idata$5", SEC_HAS_CONTENTS, 2), - INIT_SEC_DATA (IDATA4, ".idata$4", SEC_HAS_CONTENTS, 2), - INIT_SEC_DATA (IDATA6, ".idata$6", SEC_HAS_CONTENTS, 1) + INIT_SEC_DATA (TEXT, ".text", TEXT_SEC_FLAGS, 2), + INIT_SEC_DATA (DATA, ".data", DATA_SEC_FLAGS, 2), + INIT_SEC_DATA (BSS, ".bss", BSS_SEC_FLAGS, 2), + INIT_SEC_DATA (IDATA7, ".idata$7", SEC_HAS_CONTENTS, 2), + INIT_SEC_DATA (IDATA5, ".idata$5", SEC_HAS_CONTENTS, 2), + INIT_SEC_DATA (IDATA4, ".idata$4", SEC_HAS_CONTENTS, 2), + INIT_SEC_DATA (IDATA6, ".idata$6", SEC_HAS_CONTENTS, 1) }; #else @@ -2231,7 +2237,7 @@ make_one_lib_file (exp, i) { bfd * abfd; asymbol * exp_label; - asymbol * iname; + asymbol * iname = 0; asymbol * iname2; asymbol * iname_lab; asymbol ** iname_lab_pp; @@ -2245,6 +2251,7 @@ make_one_lib_file (exp, i) #define EXTRA 0 #endif asymbol * ptrs[NSECS + 4 + EXTRA + 1]; + flagword applicable; char * outname = xmalloc (10); int oidx = 0; @@ -2269,6 +2276,8 @@ make_one_lib_file (exp, i) bfd_set_private_flags (abfd, F_INTERWORK); #endif + applicable = bfd_applicable_section_flags (abfd); + /* First make symbols for the sections */ for (i = 0; i < NSECS; i++) { @@ -2278,7 +2287,7 @@ make_one_lib_file (exp, i) si->sec = bfd_make_section_old_way (abfd, si->name); bfd_set_section_flags (abfd, si->sec, - si->flags); + si->flags & applicable); bfd_set_section_alignment(abfd, si->sec, si->align); si->sec->output_section = si->sec; |