From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15003 invoked by alias); 2 Dec 2003 01:15:51 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 14996 invoked from network); 2 Dec 2003 01:15:49 -0000 Received: from unknown (HELO dfw-gate4.raytheon.com) (199.46.199.233) by sources.redhat.com with SMTP; 2 Dec 2003 01:15:49 -0000 Received: from ds02c00.directory.ray.com (ds02c00.directory.ray.com [147.25.138.118]) by dfw-gate4.raytheon.com (8.12.10/8.12.10) with ESMTP id hB21FnL3024595 for ; Mon, 1 Dec 2003 19:15:49 -0600 (CST) Received: from ds02c00.directory.ray.com (localhost [127.0.0.1]) by ds02c00.directory.ray.com (8.12.10/8.12.1) with ESMTP id hB21Fl6X011325 for ; Tue, 2 Dec 2003 01:15:48 GMT Received: Received: from electra.rsc.raytheon.com (electra.RSC.RAYTHEON.COM [147.19.81.176]) by ds02c00.directory.ray.com (8.12.10/8.12.9) with ESMTP id hB21Fk0d011322 sender sawitt@zeus.rsc.raytheon.com for ; Tue, 2 Dec 2003 01:15:46 GMT Received: from [147.19.81.175] (helo=zeus.rsc.raytheon.com ident=mail) by electra.rsc.raytheon.com with esmtp (Exim 3.35 #1 (Debian)) id 1AQz8k-0004VW-00 for ; Mon, 01 Dec 2003 17:15:46 -0800 Received: from sawitt (helo=localhost) by zeus.rsc.raytheon.com with local-esmtp (Exim 3.35 #1 (Debian)) id 1AQz8k-0003aB-00 for ; Mon, 01 Dec 2003 17:15:46 -0800 Date: Tue, 02 Dec 2003 01:15:00 -0000 From: "Stephen A. Witt" X-X-Sender: sawitt@zeus.rsc.raytheon.com To: gdb@sources.redhat.com Subject: Remote Debugging on IXDP425 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2003-12/txt/msg00012.txt.bz2 I'm trying to get remote debugging using gdbserver on an IXDP425 target board. I've built a cross gdb-6.0 that executes on an i386 with the target set to arm-unknown-linux-gnu. The 'arm-unknown-linux-gnu-gdb' on my development machine does connect and talk to the gdbserver running on the target. I can start the program from gdb but breakpoints that I set don't break the program. I turned on remote debugging (set debug remote 1) and get the following: (gdb) b main Sending packet: $m87a0,1#ca...Ack Packet received: e5 Sending packet: $m87a0,1#ca...Ack Packet received: e5 Breakpoint 1 at 0x87a0 (gdb) c Continuing. Sending packet: $Z0,8ec0,1#43...Ack Packet received: Packet Z0 (software-breakpoint) is NOT supported Sending packet: $m8ec0,1#fa...Ack Packet received: 00 Sending packet: $X8ec0,0:#1e...Ack Packet received: binary downloading NOT suppported by target Sending packet: $M8ec0,1:cc#da...Ack Packet received: OK Sending packet: $m87a0,1#ca...Ack Packet received: e5 Sending packet: $M87a0,1:cc#aa...Ack Packet received: OK Sending packet: $Hc0#db...Ack Packet received: OK Sending packet: $c#63...Ack So the software-breakpoint NOT supported would seem to be my problem. Any information about how I fix this? Thanks...