diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-27 16:56:08 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-27 16:56:08 +0000 |
commit | 3b4f1a5d05c9dc94e6708eecaf9ed8dc9832a48a (patch) | |
tree | 4de7774dea8c7c38bf75cc4fce2aa22ffa5a2118 /bfd/configure.in | |
parent | a33336a38e3ef7c5bee3d79d7d258ebd7788b87a (diff) | |
download | gdb-3b4f1a5d05c9dc94e6708eecaf9ed8dc9832a48a.zip gdb-3b4f1a5d05c9dc94e6708eecaf9ed8dc9832a48a.tar.gz gdb-3b4f1a5d05c9dc94e6708eecaf9ed8dc9832a48a.tar.bz2 |
* Makefile.in: added coff-h8300
* configure.in: now h8 is a coff target
* cpu-h8300.c: fix various disassembly problems
* libcoff.h: took out some code which has been #0ed for a long
time.
* targets.c: added h8 coff
* coff-a29k.c, coff-i386.c, coff-i960.c, coff-m68k.c, coff-m88k.c
added new macro RTYPE2HOWTO to take a load of #ifdefs out of
coffcode.h
* coffcode.h: Started to change the way machine dependencies are
handled, from the nest of #ifdefs to macros defined in the
including coff-<foo>.c
Diffstat (limited to 'bfd/configure.in')
-rw-r--r-- | bfd/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/configure.in b/bfd/configure.in index 5d16c80..d2eea94 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -3,6 +3,7 @@ # appropriate for this directory. For more information, check any # existing configure script. +configdirs="doc" srctrigger=libbfd.c srcname="BFD" @@ -130,7 +131,7 @@ amd) hitachi) case "${target_cpu}" in - h8300) bfd_target=h8300-ieee ;; + h8300) bfd_target=h8300-coff ;; *) echo "bad hitachi cpu" ;; esac ;; |