* gdbtk.c (gdbtk_init): Use ide_event_init_from_environment.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 561f4350d785c74a12af3902915f14558a8c9faf..bce2e0d14c523fdea10c5cf70c31b8d54ca76a9d 100644 (file)
@@ -1,3 +1,101 @@
+start-sanitize-gdbtk
+Mon Aug 11 10:43:04 1997  Tom Tromey  <tromey@cygnus.com>
+
+       * gdbtk.c (gdbtk_init): Use ide_event_init_from_environment.
+
+end-sanitize-gdbtk
+Sun Aug 10 19:08:26 1997  Jeffrey A Law  (law@cygnus.com)
+
+       * utils.c (error): Fix return type for !ANSI_PROTOTYPES.
+
+Sun Aug 10 16:49:09 1997  Geoffrey Noer  <noer@cygnus.com>
+
+       * ocd.c: move ocd_write_bytes proto to ocd.h since it is used
+       by ppc-bdm.c, use OCD_LOG_FILE to help debugging, define
+       BDM_BREAKPOINT if not defined in tm.h
+       (ocd_error): add new error cases
+       (ocd_start_remote): send the OCD_INIT command before
+       OCD_AYT and OCD_GET_VERSION calls, 80 was correct speed after all
+       (ocd_write_bytes): no longer static
+       (ocd_insert_breakpoint): no longer static
+       (ocd_remove_breakpoint): new
+       * ocd.h: add protos for ocd_write_bytes, ocd_insert_breakpoint,
+       and ocd_remove_breakpoint
+       * ppc-bdm.c: change bdm_ppc_ops so we call ocd_insert_breakpoint
+       and ocd_remove_breakpoint instead of memory_insert_breakpoint
+       and memory_remove_breakpoint.
+       (bdm_ppc_open): after calling ocd_open, modify DER
+       register so interrupts will drop us into debugging mode, finally
+       disable the watchdog timer on the board so we don't leave BDM
+       mode unexpectedly.
+
+Sat Aug  9 01:50:14 1997  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
+
+       * values.c (value_primitive_field):  Account for offset when
+       extracting the value of a bitfield.
+       From Paul Hilfinger <hilfingr@CS.Berkeley.EDU>.
+
+Fri Aug  8 21:35:44 1997  Mark Alexander  <marka@cygnus.com>
+
+start-sanitize-tic80
+       * config/tic80/tic80.mt:
+       (GDBSERVER-DEPFILES, GDBSERVER_LIBS): Define for gdbserver.
+       (SIM): Remove -lm to prevent make errors.
+       * configure.tgt: add gdbserver to configdirs for tic80.
+end-sanitize-tic80
+       * gdbserver/utils.c (error): Change prototype to match defs.h.
+       * gdbserver/low-sim.c: Change simulator calls to use new interface.
+       * remote.c (remote_write_bytes): Include '$' at start of packet
+       and checksum at end of packet in overhead calculation.
+
+Fri Aug  8 15:59:24 1997  Ian Lance Taylor  <ian@cygnus.com>
+
+       * ser-ocd.c: If _WIN32, include <windows.h>.
+       (dll_do_command): New static variable if _WIN32.
+       (ocd_open): Set dll_do_command if _WIN32.
+       (ocd_write): Use dll_do_command rather than do_command.
+       * config/i386/cygwin32.mh (XDEPFILES): Remove libwigglers.a.
+       (BDM_DLLNAME, BDM_LIBNAME, BDM_DEFFILE): Don't define.
+       ($(BDM_LIBNAME)): Remove target.
+       * wigglers.def: Remove.
+
+start-sanitize-gdbtk
+       * gdbtk.c (gdbtk_init): Change gdbtk_lib_tmp and gdbtk_file to be
+       dynamically allocated, rather than fixed size.  Pass "gdbtcl" to
+       ide_initialize_paths to match installed directory name.  If IDE,
+       use auto_path to search for main.tcl.
+       * Makefile.in (install-only): If ENABLE_IDE, install from gdbtcl2
+       rather than gdbtcl.
+
+end-sanitize-gdbtk
+       * config/i386/cygwin32.mh ($(BDM_LIBNAME)): Rename target from
+       libwigglers.def.
+       (libwigglers.a): Remove target.
+
+start-sanitize-gdbtk
+       * gdbtk.c (gdbtk_cleanup): New static function.
+       (gdbtk_init): Add gdbtk_cleanup as a final cleanup.  Uncomment
+       call to ide_initialize_paths.  If we can't initialize the event
+       system, set GDBTK_IDE to 0 in the Tcl interpreter.  Create the
+       ide_window_register and the ide_window commands.  Initialize tk,
+       itcl, and tix after initializing the IDE.
+
+       * configure.in (tixdir): Update for cygwin32 case for Tcl 8.0.
+       * configure: Rebuild.
+
+end-sanitize-gdbtk
+Fri Aug  8 13:11:01 1997  Mike Meissner  <meissner@cygnus.com>
+
+       * config/powerpc/ppc{,le}-{eabi,sim}.mt (TDEPFILES): Make sure
+       ppc-bdm.o and ocd.o are used for all powerpc-eabi targets.
+
+start-sanitize-gdbtk
+Fri Aug  8 00:13:32 1997  Martin M. Hunt  <hunt@cygnus.com>
+
+       * gdbtk.c (breakpoint_notify): Change buffer size from 100
+       to 256 to avoid memory corruption with very long pathnames.
+
+end-sanitize-gdbtk     
 Thu Aug  7 19:40:52 1997  Geoffrey Noer  <noer@cygnus.com>
 
        Changes to OCD support to support wiggler box as well as
@@ -6,7 +104,7 @@ Thu Aug  7 19:40:52 1997  Geoffrey Noer  <noer@cygnus.com>
        add (temporary) logging commands to help debugging,
        (ocd_open): if "target ocd wiggler lpt" then use special
        ser-ocd.c serial interface which communicates with Wigglers.dll,
-       otherwise do as we did before
+       otherwise ("target ocd <foo>") do as we did before
        (ocd_get_packet): add OCD_LOG_FILE and OCD_SET_CONNECTION to
        switch of known commands of len 0
        * ocd.h: add OCD_LOG_FILE
@@ -19,11 +117,13 @@ Thu Aug  7 19:40:52 1997  Geoffrey Noer  <noer@cygnus.com>
        return buffer and initializing curr location ptr to start of
        buffer.
 
+start-sanitize-gdbtk   
 Thu Aug  7 14:08:23 1997  Martin M. Hunt  <hunt@cygnus.com>
 
        * configure.in: Change required Tix version to 4.1.8.0 .
        * configure: Rebuilt.
 
+end-sanitize-gdbtk
 Thu Aug  7 13:39:31 1997  Geoffrey Noer  <noer@cygnus.com>
 
        * ocd.h: add OCD_SET_CONNECTION
@@ -32,7 +132,7 @@ Thu Aug  7 13:39:31 1997  Geoffrey Noer  <noer@cygnus.com>
 Thu Aug  7 13:09:17 1997  Geoffrey Noer  <noer@cygnus.com>
 
        Nomenclature change.  BDM is a specific type of OCD
-       (On chip debugging).  Wiggler is the parallel port box controlled
+       (On Chip Debugging).  Wiggler is the parallel port box controlled
        by Wigglers.dll.  The faster target box from Macraigor Systems
        is not a wiggler.  
        * ocd.c:
This page took 0.024329 seconds and 4 git commands to generate.