diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-09-04 23:16:22 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-09-04 23:16:22 +0000 |
commit | 6573c898508efb5c8cdea9876937e9ab69ae0f11 (patch) | |
tree | c3be5f0365adde0a4d5543dcb69f11183efbe201 /gdb/configure.in | |
parent | 4b078dc3b0d3ee2211e6af7abc1a708aa676351e (diff) | |
download | gdb-6573c898508efb5c8cdea9876937e9ab69ae0f11.zip gdb-6573c898508efb5c8cdea9876937e9ab69ae0f11.tar.gz gdb-6573c898508efb5c8cdea9876937e9ab69ae0f11.tar.bz2 |
* configure.in (config/nm-empty.h): If cross only, use instead
of config/nm-trash.h.
* config/nm-trash.h: Remove.
* config/nm-empty.h: New file.
* config/i386/nm-m3.h: New file, includes config/nm-m3.h.
* config/mips/nm-m3.h: New file, includes config/nm-m3.h.
* config/m68k/nm-sysv4.h: New file, includes config/nm-sysv4.h.
* config/mips/nm-sysv4.h: New file, includes config/nm-sysv4.h.
* config/sparc/nm-sysv4.h: New file, includes config/nm-sysv4.h.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index c6c796d..9ed3b46 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -361,7 +361,7 @@ host_makefile_frag=config/${gdb_host_cpu}/${gdb_host}.mh target_makefile_frag=config/${gdb_target_cpu}/${gdb_target}.mt # If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile -# (NAT_FILE) is not set in the ?config/* file, we don't make the +# (NAT_FILE) is not set in config/*/*.m[ht] files, we don't make the # corresponding links. But we have to remove the xm.h files and tm.h # files anyway, e.g. when switching from "configure host" to # "configure none". @@ -382,10 +382,9 @@ rm -f nm.h if [ "${nativefile}" != "" ]; then files="${files} config/${gdb_host_cpu}/${nativefile}" links="${links} nm.h" -# temporary scaffolding until all hosts have the host/target/native -# split in place. else - files="${files} config/nm-trash.h" + # A cross-only configuration. + files="${files} config/nm-empty.h" links="${links} nm.h" fi |