From 79f68f0f83f34c256862636b3472f2343cd0be11 Mon Sep 17 00:00:00 2001 From: "David D. Zuhn" Date: Wed, 13 Oct 1993 01:08:40 +0000 Subject: [PATCH] only configure gdbserver for native environments --- gdb/ChangeLog | 4 ++++ gdb/configure.in | 10 +++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fff55be8f9e..f9db6dd743b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 12 12:01:29 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com) + + * configure.in: only configure gdbserver for native environments + Tue Oct 12 08:59:15 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * stabsread.c (read_type): Treat a negative type number at the start diff --git a/gdb/configure.in b/gdb/configure.in index f2d0241cdb9..d9dc3be5128 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -189,7 +189,7 @@ i[34]86-*-bsd*) gdb_target=i386bsd ;; i[34]86-*-netbsd*) gdb_target=i386bsd ;; i[34]86-*-go32) gdb_target=i386aout ;; i[34]86-*-lynx*) gdb_target=i386lynx - configdirs="${configdirs} gdbserver" + configdirs="${configdirs} gdbserver" ;; i[34]86-*-solaris*) gdb_target=i386sol2 ;; i[34]86-*-sunos*) gdb_target=sun386 ;; @@ -294,8 +294,16 @@ fi # We really shouldn't depend on there being a space after TM_FILE= ... targetfile=`awk '$1 == "TM_FILE=" { print $2 }' <${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt` + +# these really aren't orthogonal true/false values of the same condition, +# but shells are slow enough that I like to reuse the test conditions +# whenever possible +# if [ "${target}" = "${host}" ] ; then nativefile=`awk '$1 == "NAT_FILE=" { print $2 }' <${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh` +else + # GDBserver is only useful in a "native" enviroment + configdirs=`echo $configdirs | sed 's/gdbserver//'` fi host_makefile_frag=config/${gdb_host_cpu}/${gdb_host}.mh -- 2.30.2