* i386linux.c (i386linux_write_object_contents): Define; like

MY(write_object_contents) in aout-target.h, but set MACHTYPE to
	M_386.  From jrs@world.std.com (Rick Sladkey).
	(MY_write_object_contents): Define.
This commit is contained in:
Ian Lance Taylor 1994-06-15 17:15:03 +00:00
parent adf05987e2
commit f7d2fa4455
2 changed files with 25 additions and 0 deletions

View File

@ -1,5 +1,10 @@
Wed Jun 15 01:34:07 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* i386linux.c (i386linux_write_object_contents): Define; like
MY(write_object_contents) in aout-target.h, but set MACHTYPE to
M_386. From jrs@world.std.com (Rick Sladkey).
(MY_write_object_contents): Define.
* aoutx.h (translate_from_native_sym_flags): Treat N_SETV symbols
as N_DATA symbols.
(aout_link_add_symbols): Likewise.

View File

@ -56,4 +56,24 @@ i386linux_bfd_final_link (abfd, info)
#define MY_bfd_final_link i386linux_bfd_final_link
/* Set the machine type correctly. */
static boolean
i386linux_write_object_contents (abfd)
bfd *abfd;
{
struct external_exec exec_bytes;
struct internal_exec *execp = exec_hdr (abfd);
N_SET_MACHTYPE (*execp, M_386);
obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
WRITE_HEADERS(abfd, execp);
return true;
}
#define MY_write_object_contents i386linux_write_object_contents
#include "aout-target.h"