From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7315 invoked by alias); 14 Feb 2007 15:04:35 -0000 Received: (qmail 7294 invoked by uid 22791); 14 Feb 2007 15:04:33 -0000 X-Spam-Check-By: sourceware.org Received: from nz-out-0506.google.com (HELO nz-out-0506.google.com) (64.233.162.227) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 14 Feb 2007 15:04:22 +0000 Received: by nz-out-0506.google.com with SMTP id m7so201156nzf for ; Wed, 14 Feb 2007 07:04:21 -0800 (PST) Received: by 10.65.97.18 with SMTP id z18mr752336qbl.1171465461124; Wed, 14 Feb 2007 07:04:21 -0800 (PST) Received: by 10.65.250.20 with HTTP; Wed, 14 Feb 2007 07:04:21 -0800 (PST) Message-ID: <7ac1e90c0702140704w6376607dt247f1dafca230b05@mail.gmail.com> Date: Wed, 14 Feb 2007 15:32:00 -0000 From: "Bahadir Balban" To: "Rakesh Kumar" Subject: Re: How to perform remote debugging using GDB for ARM processors Cc: gdb@sourceware.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2007-02/txt/msg00119.txt.bz2 On 2/14/07, Rakesh Kumar wrote: > Hi, > > I want to know how to go about the process of remote debugging using GDB for > applications running/resident on ARM Processors. > > Regards, > Rakesh Kumar H.K. > You need software on the target that supports the gdb stubs. Depending on the connection setup, you should do something like: % target remote : also there are arm-specific connection options if you have the debugger compiled for remote debugging arm targets. After successful connection the rest is the same as debugging on the host. Bahadir