From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20811 invoked by alias); 9 Mar 2006 16:45:18 -0000 Received: (qmail 20800 invoked by uid 22791); 9 Mar 2006 16:45:15 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 09 Mar 2006 16:45:14 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id k29GjCdX011757 for ; Thu, 9 Mar 2006 11:45:12 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id k29GjC110715; Thu, 9 Mar 2006 11:45:12 -0500 Received: from [127.0.0.1] (sebastian-int.corp.redhat.com [172.16.52.221]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id k29GjA51004584; Thu, 9 Mar 2006 11:45:11 -0500 Message-ID: <44105B96.8000205@redhat.com> Date: Thu, 09 Mar 2006 16:45:00 -0000 From: Keith Seitz User-Agent: Thunderbird 1.5 (X11/20060112) MIME-Version: 1.0 To: Guillaume Savaton CC: insight@sources.redhat.com Subject: Re: Make breakpoint pending References: <000101c63763$1e368fa0$ad00a8c0@amarnath> <4406B226.7090904@eseo.fr> <44105338.20004@redhat.com> <44105A23.7070705@eseo.fr> In-Reply-To: <44105A23.7070705@eseo.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org X-SW-Source: 2006-q1/txt/msg00059.txt.bz2 Guillaume Savaton wrote: > All my programs are written in assembly language. > The executable is generated using GNU as and ld. Ah, okay, now I'm beginning to see what is happening. If you type "break _start" (or whatever your label is called), I'll bet gdb asks you the same question. You really need to use "break *_start", since _start is only a LABEL, not a FUNCTION. [Okay, I am assuming you didn't write your assembler code make the distinction.] Keith