From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: gdb-patches@sourceware.cygnus.com Subject: [patch] Add -i=mi0 as an interpreter Date: Mon, 18 Jun 2001 10:54:00 -0000 Message-id: <3B2E405A.7000500@cygnus.com> X-SW-Source: 2001-06/msg00343.html Hello, This patch gets GDB to accept -i=mi and -i=mi0 (and lets not mention -i=mi1 :-) as an MI interpreter. Most of it is straight forward. The nasty bit is where I s/strcmp/strncmp/ in breakpoint.c and infrun.c. Those strncmp()'s will eventually go away but that involves more work again. The motivation behind this patch is to provide a migration path from the never enabled existing MI interface to the finally enabled one. Andrew