From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17089 invoked by alias); 5 Nov 2003 19:38:29 -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 17081 invoked from network); 5 Nov 2003 19:38:27 -0000 Received: from unknown (HELO cam-admin0.cambridge.arm.com) (193.131.176.58) by sources.redhat.com with SMTP; 5 Nov 2003 19:38:27 -0000 Received: from pc960.cambridge.arm.com (pc960.cambridge.arm.com [10.1.205.4]) by cam-admin0.cambridge.arm.com (8.12.10/8.12.10) with ESMTP id hA5JcMUs009873; Wed, 5 Nov 2003 19:38:22 GMT Received: from pc960.cambridge.arm.com (rearnsha@localhost) by pc960.cambridge.arm.com (8.11.6/8.9.3) with ESMTP id hA5JcK332169; Wed, 5 Nov 2003 19:38:20 GMT Message-Id: <200311051938.hA5JcK332169@pc960.cambridge.arm.com> X-Authentication-Warning: pc960.cambridge.arm.com: rearnsha owned process doing -bs To: Chris.Pedley@arm.com cc: gdb@sources.redhat.com, Richard.Earnshaw@arm.com Reply-To: Richard.Earnshaw@arm.com Organization: ARM Ltd. X-Telephone: +44 1223 400569 (direct+voicemail), +44 1223 400400 (switchbd) X-Fax: +44 1223 400410 X-Address: ARM Ltd., 110 Fulbourn Road, Cherry Hinton, Cambridge CB1 9NJ. X-Url: http://www.arm.com/ Subject: Re: ARM Remote GDB 6.0 In-reply-to: Your message of "Wed, 05 Nov 2003 19:30:05 GMT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 05 Nov 2003 19:38:00 -0000 From: Richard Earnshaw X-SW-Source: 2003-11/txt/msg00038.txt.bz2 > > Any ideas what is going on? I'm a bit worried about: > 'Function "internal_error" not defined' Can't help you on the rest of your problem, but this is nothing to worry about. When gdb starts up it will execute the contents of any .gdbinit file in the current directory. In this case you most likely have a file that contains break internal_error in it on line 5. Since the program you are trying to debug here isn't the one the script was written for it's trying to set a breakpoint on a function that doesn't exist and so generating an error. R.