From: Michael Meissner Date: Fri, 16 Feb 1996 00:53:00 +0000 (+0000) Subject: Do not build gdb if building native NT compilers on a UNIX host with a cross compiler X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44ccfc3c16310e983446cd3678402aa0e06ef79a;p=binutils-gdb.git Do not build gdb if building native NT compilers on a UNIX host with a cross compiler --- diff --git a/ChangeLog b/ChangeLog index be850cab9d2..947edf3e875 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 15 19:50:50 1996 Michael Meissner + + * configure.in (host *-*-cygwin32): Don't build gdb if we are + building NT native compilers on Unix. + Thu Feb 15 17:42:25 1996 Ian Lance Taylor * configure.in: Don't get CC from the host Makefile fragment if we diff --git a/configure.in b/configure.in index 0d5cbb28069..51513f91998 100644 --- a/configure.in +++ b/configure.in @@ -408,8 +408,8 @@ case "${target}" in skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` # Can't build gdb for cygwin32 if not native. - case "${host}" in - *-*-cygwin32) ;; # keep gdb + case "${host}:${build}" in + *-*-cygwin32 | *-*-cygwin32:*-*-cygwin32) ;; # keep gdb *) noconfigdirs="$noconfigdirs gdb" esac