From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15775 invoked by alias); 12 Dec 2002 17:29:54 -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 15661 invoked from network); 12 Dec 2002 17:29:20 -0000 Received: from unknown (HELO integraonline.com) (206.163.82.92) by sources.redhat.com with SMTP; 12 Dec 2002 17:29:20 -0000 Received: (qmail 16258 invoked from network); 12 Dec 2002 17:29:18 -0000 Received: from unknown (HELO ?192.168.0.83?) ([64.122.47.50]) (envelope-sender ) by mail-3.integraonline.com (qmail-ldap-1.03) with SMTP for ; 12 Dec 2002 17:29:18 -0000 Subject: Remote Debugging From: Tim To: gdb@sources.redhat.com Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 12 Dec 2002 09:29:00 -0000 Message-Id: <1039714196.1418.20.camel@TIM.DCS> Mime-Version: 1.0 X-SW-Source: 2002-12/txt/msg00190.txt.bz2 I running gdb 5.2-2 and gdbserver. Remotely I'm running kernel 2.4-19. I compiled gdbserver against uClibc. My app is statically compiled against glibc 6. My remote device is an x86 board. My app is compiled with -ggdb and is not stripped on either the remote or the host. I start gdbserver 192.168.0.1:2345 myapp -options on the remote device. I start gdb on the host and give it the command target remote 192.168.0.2:2345 the remote device shows a connection from my host. then I give it the command load myapp. After all this I cannot view any source. The 'l' command returns the error 'no symbol table loaded' and instructs me to use file. What am I doing wrong? thanx!