mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
* configure.in, config.sub: Recognize cygwin32.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
|
||||||
|
|
||||||
|
* configure.in, config.sub: Recognize cygwin32.
|
||||||
|
|
||||||
Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
|
Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
|
||||||
|
|
||||||
* config.guess, config.sub: Recognize A/UX.
|
* config.guess, config.sub: Recognize A/UX.
|
||||||
|
22
configure.in
22
configure.in
@ -115,7 +115,6 @@ case "${host}" in
|
|||||||
i[345]86-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;;
|
i[345]86-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;;
|
||||||
i[345]86-*-aix*) host_makefile_frag=config/mh-aix386 ;;
|
i[345]86-*-aix*) host_makefile_frag=config/mh-aix386 ;;
|
||||||
i[345]86-*-go32*) host_makefile_frag=config/mh-go32 ;;
|
i[345]86-*-go32*) host_makefile_frag=config/mh-go32 ;;
|
||||||
i[345]86-*-win32) host_makefile_frag=config/mh-i386win32 ;;
|
|
||||||
vax-*-ultrix2*) host_makefile_frag=config/mh-vaxult2 ;;
|
vax-*-ultrix2*) host_makefile_frag=config/mh-vaxult2 ;;
|
||||||
*-*-solaris2*) host_makefile_frag=config/mh-solaris ;;
|
*-*-solaris2*) host_makefile_frag=config/mh-solaris ;;
|
||||||
m68k-sun-sunos*) host_makefile_frag=config/mh-sun3 ;;
|
m68k-sun-sunos*) host_makefile_frag=config/mh-sun3 ;;
|
||||||
@ -342,7 +341,7 @@ done
|
|||||||
# Configure extra directories which are host specific
|
# Configure extra directories which are host specific
|
||||||
|
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
i[345]86-*-win32* | i[345]86-*-go32*)
|
i[345]86-*-go32*)
|
||||||
configdirs="$configdirs dosrel" ;;
|
configdirs="$configdirs dosrel" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -359,11 +358,11 @@ case "${host}" in
|
|||||||
i[345]86-*-go32)
|
i[345]86-*-go32)
|
||||||
noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff"
|
noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff"
|
||||||
;;
|
;;
|
||||||
i[345]86-*-win32)
|
*-*-cygwin32)
|
||||||
noconfigdirs="patch diff flex make tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs"
|
noconfigdirs="patch diff make tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs"
|
||||||
;;
|
;;
|
||||||
ppc*-*-pe)
|
ppc*-*-pe)
|
||||||
noconfigdirs="patch diff flex make tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs"
|
noconfigdirs="patch diff make tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -416,13 +415,20 @@ case "${target}" in
|
|||||||
# but don't build gdb
|
# but don't build gdb
|
||||||
noconfigdirs="$noconfigdirs gdb target-libg++ target-libstdc++ target-libio target-librx"
|
noconfigdirs="$noconfigdirs gdb target-libg++ target-libstdc++ target-libio target-librx"
|
||||||
;;
|
;;
|
||||||
i[345]86-*-win32)
|
*-*-cygwin32)
|
||||||
# Can't build gdb for win32 if not native.
|
|
||||||
# make/glob's configure uses some AC_TRY_RUN type tests
|
# make/glob's configure uses some AC_TRY_RUN type tests
|
||||||
target_configdirs="$target_configdirs target-winsup"
|
target_configdirs="$target_configdirs target-winsup"
|
||||||
noconfigdirs="$noconfigdirs gdb tcl tk expect make"
|
noconfigdirs="$noconfigdirs tcl tk expect make"
|
||||||
# always build newlib.
|
# always build newlib.
|
||||||
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
|
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
|
||||||
|
|
||||||
|
# Can't build gdb for cygwin32 if not native.
|
||||||
|
case "${host}" in
|
||||||
|
*-*-cygwin32) ;; # keep gdb
|
||||||
|
*) noconfigdirs="$noconfigdirs gdb"
|
||||||
|
esac
|
||||||
|
|
||||||
;;
|
;;
|
||||||
i[345]86-*-pe)
|
i[345]86-*-pe)
|
||||||
noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx"
|
noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx"
|
||||||
|
Reference in New Issue
Block a user