This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[RFC/mi] Enable MI by default


Hello,

This patch enables MI by default.  I intend committing it in a day or 
so.  I also need to go back through and fix any outstanding problems 
that people reported.

As MichaelC reported, with the MI enabled, there is a slight increase in 
the number of failures.  The ones I've looked at reflected real 
regressions in GDB that occured since the MI testsuite was first 
created.  Even with those failures, I think the MI should be enabled 
now.  As Eli recently pointed out, we've got to check that the MI builds 
on as many platforms as possible.

	Andrew

2001-06-27  Andrew Cagney  <ac131313@redhat.com>

	* configure.in (--enable-gdbmi): Enable by default.
	* configure: Regenerate.
	* TODO: Update.

Index: TODO
===================================================================
RCS file: /cvs/src/src/gdb/TODO,v
retrieving revision 1.83
diff -p -r1.83 TODO
*** TODO	2001/05/10 18:20:51	1.83
--- TODO	2001/06/27 18:21:17
*************** The following new features should be inc
*** 93,117 ****
  
  --
  
- Enable MI by default.  Old code can be deleted after 5.1 is out.
- 
- Issues:
- 
- 	o	syntax change where a list would
- 		look like:
- 		     [ foo=a, foo=b, foo=c ]
- 		instead of
- 		     { foo=a, foo=b, foo=c }
- 
- 	o	kill off the idea of a reverse
- 		query.
- 
- 	o	review test cases
- 
- 	o	enable it
- 
- --
- 
  Pascal (Pierre Muller, David Taylor)
  
  Pierre Muller has contributed patches for adding Pascal Language
--- 93,98 ----
Index: configure.in
===================================================================
RCS file: /cvs/src/src/gdb/configure.in,v
retrieving revision 1.64
diff -p -r1.64 configure.in
*** configure.in	2001/06/22 16:01:31	1.64
--- configure.in	2001/06/27 18:21:37
*************** AC_ARG_ENABLE(gdbmi,
*** 583,589 ****
        AC_MSG_ERROR(Bad value for --enable-gdbmi: ${enableval})
      ;;
    esac
! ])
  case ${enable_gdbmi} in
    "yes" )
      if test -d "${srcdir}/mi" ; then
--- 583,590 ----
        AC_MSG_ERROR(Bad value for --enable-gdbmi: ${enableval})
      ;;
    esac
! ],
! [enable_gdbmi=yes])
  case ${enable_gdbmi} in
    "yes" )
      if test -d "${srcdir}/mi" ; then

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]