diff options
author | Fred Fish <fnf@specifix.com> | 1996-12-28 05:59:26 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-12-28 05:59:26 +0000 |
commit | 6455664321ced2cc83219f9ec1b4b943152ea0dd (patch) | |
tree | d6bd3385f9b9331a80576e7a5ab9da4ab02261b2 /gas/configure.in | |
parent | 6357e7f68e62ef85600908495de20eb2b28ccaa3 (diff) | |
download | gdb-6455664321ced2cc83219f9ec1b4b943152ea0dd.zip gdb-6455664321ced2cc83219f9ec1b4b943152ea0dd.tar.gz gdb-6455664321ced2cc83219f9ec1b4b943152ea0dd.tar.bz2 |
* NOTES.config (Implementation): as.h #define's "GAS" not "gas",
includes config.h instead of host.h, tc.h instead of tp.h, and
targ-env.h instead of target-environment.h.
Also, obj-format.h includes targ-cpu.h instead of
target-processor.h.
start-sanitize-tic80
(Laying groundwork, that will be incrementally fleshed out,
for TIc80 support)
* configure.in (case ${generic_target}): Add tic80-*-coff entry.
* configure: Rebuild with autoconf.
* config/obj-coff.h (coff/tic80.h): Include if TC_TIC80 defined.
(TARGET_FORMAT): Define to "coff-tic80".
* config/tc-tic80.c: New file for TIc80 support.
* config/tc-tic80.h: New file for TIc80 support.
end-sanitize-tic80
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gas/configure.in b/gas/configure.in index 8325e03..1f27816 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -63,7 +63,9 @@ emulations="" for this_target in $target $canon_targets ; do - eval `echo $this_target | sed 's/^\(.*\)-\(.*\)-\(.*\)$/cpu=\1 vendor=\2 os=\3/'` +changequote(,)dnl + eval `echo $this_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/cpu=\1 vendor=\2 os=\3/'` +changequote([,])dnl # check for architecture variants case ${cpu} in @@ -287,6 +289,9 @@ changequote([,])dnl fmt=elf ;; sparc-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;; +# start-sanitize-tic80 + tic80-*-coff) fmt=coff targ=tic80coff;; +# end-sanitize-tic80 v850-*-*) fmt=elf bfd_gas=yes ;; vax-*-bsd* | vax-*-ultrix*) |