mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 05:47:26 +08:00
Support for 386 coff
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
Fri Sep 11 10:21:04 1992 Steve Chamberlain (sac@thepub.cygnus.com)
|
||||||
|
|
||||||
|
Support for i386 coff
|
||||||
|
* obj-coffbfd.h : added stuff
|
||||||
|
* tc-i386.c (tc_coff_fix2rtype): new function
|
||||||
|
* tc-i386.h : new coff defines
|
||||||
|
|
||||||
Wed Sep 9 11:10:24 1992 Ian Lance Taylor (ian@cygnus.com)
|
Wed Sep 9 11:10:24 1992 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
* tc-m68k.c (m68k_ip, m68k_ip_op, get_num, try_moto_index): merge
|
* tc-m68k.c (m68k_ip, m68k_ip_op, get_num, try_moto_index): merge
|
||||||
|
@ -45,6 +45,9 @@
|
|||||||
#include "coff/m68k.h"
|
#include "coff/m68k.h"
|
||||||
#define TARGET_FORMAT "coff-m68k"
|
#define TARGET_FORMAT "coff-m68k"
|
||||||
|
|
||||||
|
#elif defined(TC_I386)
|
||||||
|
#include "coff/i386.h"
|
||||||
|
#define TARGET_FORMAT "coff-i386"
|
||||||
#elif defined(TC_A29K)
|
#elif defined(TC_A29K)
|
||||||
#include "coff/a29k.h"
|
#include "coff/a29k.h"
|
||||||
#define TARGET_FORMAT "coff-a29k-big"
|
#define TARGET_FORMAT "coff-a29k-big"
|
||||||
|
@ -142,6 +142,12 @@ coff* | sysv*)
|
|||||||
need_bfd="./../bfd/libbfd.a"
|
need_bfd="./../bfd/libbfd.a"
|
||||||
gas_target=m68kcoff
|
gas_target=m68kcoff
|
||||||
;;
|
;;
|
||||||
|
i386)
|
||||||
|
obj_format=coffbfd
|
||||||
|
need_bfd="./../bfd/libbfd.a"
|
||||||
|
gas_target=i386coff
|
||||||
|
;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case ${target_vendor} in
|
case ${target_vendor} in
|
||||||
|
Reference in New Issue
Block a user