diff options
author | Jason Molenda <crash@cygnus> | 1995-11-14 22:58:14 +0000 |
---|---|---|
committer | Jason Molenda <crash@cygnus> | 1995-11-14 22:58:14 +0000 |
commit | 600b2f21c9c57f612df36a7e84d51e900f9a2c36 (patch) | |
tree | 3f3f71218b668b63aec4eeba338bd1c90bda41cb /configure.in | |
parent | 6d93c360042c6c748fc090561c479d1b7bb6d742 (diff) | |
download | gdb-600b2f21c9c57f612df36a7e84d51e900f9a2c36.zip gdb-600b2f21c9c57f612df36a7e84d51e900f9a2c36.tar.gz gdb-600b2f21c9c57f612df36a7e84d51e900f9a2c36.tar.bz2 |
* configure.in (target_libs): add target-winsup.
(target==i386-win32): add patch diff flex make to $noconfigdirs.
(target==ppcle-pe): remove ld from $noconfigdirs.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/configure.in b/configure.in index 2a0d470..50b4fa7 100644 --- a/configure.in +++ b/configure.in @@ -42,7 +42,7 @@ host_tools="texinfo byacc flex bison binutils ld gas gcc gdb make patch # these libraries are built for the target environment, and are built after # the host libraries and the host tools (which may be a cross compiler) # -target_libs="target-libiberty target-libgloss target-newlib target-libio target-librx target-libstdc++ target-libg++" +target_libs="target-libiberty target-libgloss target-newlib target-libio target-librx target-libstdc++ target-libg++ target-winsup" # these tools are built using the target libs, and are intended to run only @@ -349,7 +349,7 @@ case "${host}" in noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff" ;; i[345]86-*-win32) - noconfigdirs="tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs" + noconfigdirs="patch diff flex make tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs" ;; esac @@ -405,15 +405,13 @@ case "${target}" in ;; i[345]86-*-win32) - noconfigdirs="$noconfigdirs tk" # Can't build gdb for win32 if not native. + # make/glob's configure uses some AC_TRY_RUN type tests if [ x${is_cross_compiler} = xyes ]; then - noconfigdirs="$noconfigdirs gdb" + noconfigdirs="$noconfigdirs gdb tk make" fi # always build newlib. skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` - # and winsup - configdirs="$configdirs target-winsup" ;; i[345]86-*-pe) noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx" @@ -445,7 +443,7 @@ case "${target}" in noconfigdirs="$noconfigdirs gprof cvs" ;; powerpc*-*-winnt* | powerpc*-*-pe*) - noconfigdirs="$noconfigdirs ld gdb" + noconfigdirs="$noconfigdirs gdb" ;; rs6000-*-lynxos*) # The CVS server code doesn't work on the RS/6000 |