* configure.in: added ebmon entry.

* output-file.c (output_file_create, output_file_close) added
	stuff to use bfd.
	* write.c: more bfd support
	* config/obj-coff.c  config/obj-coff.h use bfd for swapping
	header info.
	* config/tc-a29k: added the reloc types we support now
This commit is contained in:
Steve Chamberlain 1991-10-21 16:29:54 +00:00
parent 35c90743a0
commit 8a24a37c7e

View file

@ -6,7 +6,7 @@
srctrigger=as.c
srcname="gas"
targetdependent=true
need_bfd=
# per-host:
gas_host=generic
@ -45,9 +45,15 @@ cpu_type=${target_cpu}
# assign object format
case ${target_os} in
sysv* | -coff*)
sysv* | -coff* | ebmon )
obj_format=coff
;;
hds)
obj_format=ieee
need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
;;
bout*)
obj_format=bout
;;
@ -69,6 +75,11 @@ vax)
;;
esac
# and target makefile frag
target_makefile_frag=config/tmake-${target_cpu}
files="config/ho-${gas_host}.h config/tc-${cpu_type}.c \
config/tc-${cpu_type}.h config/te-${emulation}.h \
config/obj-${obj_format}.h config/obj-${obj_format}.c \