diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1994-09-03 00:45:30 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1994-09-03 00:45:30 +0000 |
commit | b40fa61278bbac39de3f62ff6e1adc005d810249 (patch) | |
tree | 8370cee969868f5711a69bd8a582188b3ee6839f /gdb | |
parent | 7f4c859520eb131486e73c298b45a88d87c3be89 (diff) | |
download | gdb-b40fa61278bbac39de3f62ff6e1adc005d810249.zip gdb-b40fa61278bbac39de3f62ff6e1adc005d810249.tar.gz gdb-b40fa61278bbac39de3f62ff6e1adc005d810249.tar.bz2 |
* configure.in: No longer looks for nm, tm, and xm headers in
config/<header>; they are always in config/<cpu>/<header>.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/configure.in | 22 |
2 files changed, 10 insertions, 17 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3c815cd..42c8b25 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Fri Sep 2 17:35:55 1994 J.T. Conklin (jtc@phishhead.cygnus.com) + + * configure.in: No longer looks for nm, tm, and xm headers in + config/<header>; they are always in config/<cpu>/<header>. + Fri Sep 2 16:40:03 1994 Stan Shebs (shebs@andros.cygnus.com) * objfiles.c (allocate_objfile): Add the newly-created objfile to diff --git a/gdb/configure.in b/gdb/configure.in index 31e9adf..0b3d9f0 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -49,7 +49,7 @@ i[345]86-sequent-sysv4*) gdb_host=ptx4 ;; i[345]86-sequent-sysv*) gdb_host=ptx ;; i[345]86-*-aix*) gdb_host=i386aix ;; i[345]86-*-bsd*) gdb_host=i386bsd ;; -i[345]86-*-netbsd*) gdb_host=i386bsd ;; +i[345]86-*-netbsd*) gdb_host=nbsd ;; i[345]86-*-go32*) gdb_host=go32 ;; i[345]86-*-linux*) gdb_host=linux ;; i[345]86-*-lynxos*) gdb_host=i386lynx ;; @@ -211,7 +211,7 @@ i[345]86-*-coff*) gdb_target=i386v ;; i[345]86-*-elf*) gdb_target=i386v ;; i[345]86-*-aix*) gdb_target=i386aix ;; i[345]86-*-bsd*) gdb_target=i386bsd ;; -i[345]86-*-netbsd*) gdb_target=i386bsd ;; +i[345]86-*-netbsd*) gdb_target=nbsd ;; i[345]86-*-os9k) gdb_target=i386os9k ;; i[345]86-*-go32*) gdb_target=i386aout ;; i[345]86-*-lynxos*) gdb_target=i386lynx @@ -370,29 +370,17 @@ files= links= rm -f xm.h if [ "${hostfile}" != "" ]; then - if [ -f ${srcdir}/config/${hostfile} ]; then - files="${files} config/${hostfile}" - else - files="${files} config/${gdb_host_cpu}/${hostfile}" - fi + files="${files} config/${gdb_host_cpu}/${hostfile}" links="${links} xm.h" fi rm -f tm.h if [ "${targetfile}" != "" ]; then - if [ -f ${srcdir}/config/${targetfile} ]; then - files="${files} config/${targetfile}" - else - files="${files} config/${gdb_target_cpu}/${targetfile}" - fi + files="${files} config/${gdb_target_cpu}/${targetfile}" links="${links} tm.h" fi rm -f nm.h if [ "${nativefile}" != "" ]; then - if [ -f ${srcdir}/config/${nativefile} ]; then - files="${files} config/${nativefile}" - else - files="${files} config/${gdb_host_cpu}/${nativefile}" - fi + files="${files} config/${gdb_host_cpu}/${nativefile}" links="${links} nm.h" # temporary scaffolding until all hosts have the host/target/native # split in place. |