mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-12 01:24:12 +08:00
* config/obj-coffbfd.c (fill_section): Don't set NOLOAD bit for
a29k .bss section; the mondfe program doesn't like it.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
Mon Mar 29 12:56:56 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* config/obj-coffbfd.c (fill_section): Don't set NOLOAD bit for
|
||||||
|
a29k .bss section; the mondfe program doesn't like it.
|
||||||
|
|
||||||
|
Fri Mar 26 10:22:04 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* config/tc-mips.c: Reindented to GNU standards.
|
||||||
|
|
||||||
Thu Mar 25 08:59:14 1993 Ian Lance Taylor (ian@cygnus.com)
|
Thu Mar 25 08:59:14 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
* config/obj-coffbfd.c (do_relocs_for): Remove a29k special case.
|
* config/obj-coffbfd.c (do_relocs_for): Remove a29k special case.
|
||||||
|
@ -508,9 +508,11 @@ DEFUN (fill_section, (abfd, h, file_cursor),
|
|||||||
s->s_scnptr = 0;
|
s->s_scnptr = 0;
|
||||||
s->s_flags |= STYP_BSS;
|
s->s_flags |= STYP_BSS;
|
||||||
#ifndef TC_I386
|
#ifndef TC_I386
|
||||||
|
#ifndef TC_A29K
|
||||||
/* Apparently the SVR3 linker is confused by noload
|
/* Apparently the SVR3 linker is confused by noload
|
||||||
sections. */
|
sections. So is the UDI mondfe program. */
|
||||||
s->s_flags |= STYP_NOLOAD;
|
s->s_flags |= STYP_NOLOAD;
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else if (strcmp (s->s_name, ".lit") == 0)
|
else if (strcmp (s->s_name, ".lit") == 0)
|
||||||
|
Reference in New Issue
Block a user