mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 00:59:15 +08:00
Changes to gdbtk configury so cygwin32 hosts (in addition to go32)
are configured without gdbtk
This commit is contained in:
@ -1,3 +1,22 @@
|
|||||||
|
start-sanitize-gdbtk
|
||||||
|
Wed Jun 19 17:23:38 1996 Geoffrey Noer <noer@cygnus.com>
|
||||||
|
|
||||||
|
* configure.in: disable gdbtk for *cygwin32* hosted compiles
|
||||||
|
* configure: regenerated with autoconf 2.8
|
||||||
|
|
||||||
|
end-sanitize-gdbtk
|
||||||
|
start-sanitize-h8s
|
||||||
|
Tue Jun 18 16:25:54 1996 Jeffrey A. Law <law@rtl.cygnus.com>
|
||||||
|
|
||||||
|
* h8300-dep.c (gdb_print_insn_h8300): Handle the H8/S.
|
||||||
|
(h8300_command): Likewise.
|
||||||
|
(set_machine): Likewise.
|
||||||
|
(set_machine_hook): Likewise.
|
||||||
|
(_initialize_h8300m): Likewise.
|
||||||
|
|
||||||
|
* config/h8300/tm-h8300.h (h8300smode): Declare.
|
||||||
|
|
||||||
|
end-sanitize-h8s
|
||||||
Sun Jun 16 15:21:51 1996 Jeffrey A. Law <law@rtl.cygnus.com>
|
Sun Jun 16 15:21:51 1996 Jeffrey A. Law <law@rtl.cygnus.com>
|
||||||
|
|
||||||
* somsolib.c (som_solib_create_inferior_hook): Handle tracking
|
* somsolib.c (som_solib_create_inferior_hook): Handle tracking
|
||||||
|
666
gdb/configure
vendored
666
gdb/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -165,6 +165,9 @@ AC_ARG_ENABLE(gdbtk,
|
|||||||
*go32*)
|
*go32*)
|
||||||
AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
|
AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
|
||||||
enable_gdbtk=no ;;
|
enable_gdbtk=no ;;
|
||||||
|
*cygwin32*)
|
||||||
|
AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
|
||||||
|
enable_gdbtk=no ;;
|
||||||
*)
|
*)
|
||||||
enable_gdbtk=yes ;;
|
enable_gdbtk=yes ;;
|
||||||
esac ;;
|
esac ;;
|
||||||
@ -174,10 +177,12 @@ AC_ARG_ENABLE(gdbtk,
|
|||||||
AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
|
AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
|
||||||
esac],
|
esac],
|
||||||
[
|
[
|
||||||
# Default is on for everything but go32
|
# Default is on for everything but go32 and cygwin32
|
||||||
case "$host" in
|
case "$host" in
|
||||||
*go32*)
|
*go32*)
|
||||||
;;
|
;;
|
||||||
|
*cygwin32*)
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
enable_gdbtk=yes ;;
|
enable_gdbtk=yes ;;
|
||||||
esac
|
esac
|
||||||
|
Reference in New Issue
Block a user