diff options
author | Geoffrey Noer <noer@cygnus> | 1998-01-31 01:23:12 +0000 |
---|---|---|
committer | Geoffrey Noer <noer@cygnus> | 1998-01-31 01:23:12 +0000 |
commit | 383a4667684188156f4ddb4a417f97e501df1c36 (patch) | |
tree | ded5cc9f63b4cfb77adfbd5b7e44eb7f7a06d4c1 | |
parent | 93ed82b0c72dd351d49fbe59764f25c08a8300d7 (diff) | |
download | gdb-383a4667684188156f4ddb4a417f97e501df1c36.zip gdb-383a4667684188156f4ddb4a417f97e501df1c36.tar.gz gdb-383a4667684188156f4ddb4a417f97e501df1c36.tar.bz2 |
Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
* configure.in: Remove expect from noconfigdirs when target
is cygwin32. OK to build expect and dejagnu with Canadian
Cross.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | configure.in | 8 |
2 files changed, 10 insertions, 7 deletions
@@ -1,3 +1,9 @@ +Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com> + + * configure.in: Remove expect from noconfigdirs when target + is cygwin32. OK to build expect and dejagnu with Canadian + Cross. + start-sanitize-sky Wed Jan 28 11:59:32 1998 Doug Evans <devans@canuck.cygnus.com> @@ -7,6 +13,9 @@ Wed Jan 28 11:59:32 1998 Doug Evans <devans@canuck.cygnus.com> end-sanitize-sky Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com> + * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32 + host. + * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32 and mingw32. diff --git a/configure.in b/configure.in index fa52be0..32a6b59 100644 --- a/configure.in +++ b/configure.in @@ -611,7 +611,7 @@ case "${target}" in ;; *-*-cygwin32) target_configdirs="$target_configdirs target-winsup" - noconfigdirs="$noconfigdirs expect target-libgloss" + noconfigdirs="$noconfigdirs target-libgloss" # always build newlib. skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` @@ -799,12 +799,6 @@ case "${noconfigdirs}" in *target-newlib*) noconfigdirs="$noconfigdirs target-libgloss" ;; esac -# If we are building a Canadian Cross, discard tools that can not be built -# using a cross compiler. FIXME: These tools should be fixed. -if [ "${build}" != "${host}" ]; then - noconfigdirs="$noconfigdirs expect dejagnu" -fi - # Make sure we don't let GNU ld be added if we didn't want it. if [ x$with_gnu_ld = xno ]; then use_gnu_ld=no |