diff options
author | Fred Fish <fnf@specifix.com> | 1992-05-03 23:05:07 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-05-03 23:05:07 +0000 |
commit | 4db8e515c4db19f91a671c81fcc87bbc2b48c242 (patch) | |
tree | 6f5baa70bf3b92aa0ce5e19d909165c549b88b93 /gdb/configure.in | |
parent | d752f749c86c0b43e54d2da9f5963e27f5baa3e3 (diff) | |
download | gdb-4db8e515c4db19f91a671c81fcc87bbc2b48c242.zip gdb-4db8e515c4db19f91a671c81fcc87bbc2b48c242.tar.gz gdb-4db8e515c4db19f91a671c81fcc87bbc2b48c242.tar.bz2 |
* Makefile.in (VERSION): Bump to 4.5.2.
* Makefile.in (DEMANGLE_OPTS): Add, default to -Dnounderscore.
* configure.in: Simplify ncr3000 gdb_host logic, add gdb_target.
* dwarfread.c (struct_type): Apply fix from Peggy Fieland for
proper handling of bit fields.
* gdbtypes.h (struct type): Clarify use of field.bitpos.
* symtab.h: Fix couple of misspellings in comments.
* value.h (struct value): Clarify use of bitpos.
* value.h (unpack_field_as_long): Change prototype, returns
LONGEST.
* values.c (unpack_field_as_long): Change return type to LONGEST,
sign extend unpacked fields that are signed, other rewriting.
* config/ncr3000.mt: New target config file.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 000578a..e6b87c0 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -99,11 +99,7 @@ i386) sun) gdb_host=sun386 ;; sco) gdb_host=i386sco ;; sequent) gdb_host=symmetry ;; - ncr) - case "${host_os}" in - sysv4*) gdb_host=ncr3000 ;; - esac - ;; + ncr) gdb_host=ncr3000 ;; *) case "${host_os}" in sysv32) gdb_host=i386v32 ;; @@ -283,6 +279,7 @@ i386) sco) gdb_target=i386sco ;; sun) gdb_target=sun386 ;; sequent) gdb_target=symmetry ;; + ncr) gdb_target=ncr3000 ;; *) case "${target_os}" in sysv32) gdb_target=i386v32 ;; |