From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4016 invoked by alias); 14 Dec 2011 12:53:54 -0000 Received: (qmail 4003 invoked by uid 22791); 14 Dec 2011 12:53:53 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,TW_BJ X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 14 Dec 2011 12:53:38 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 3A3652BB4D5; Wed, 14 Dec 2011 07:53:37 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HANcEYf1fULQ; Wed, 14 Dec 2011 07:53:37 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 0D43E2BB4D2; Wed, 14 Dec 2011 07:53:36 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id CAEFA145615; Wed, 14 Dec 2011 04:53:34 -0800 (PST) Date: Wed, 14 Dec 2011 13:20:00 -0000 From: Joel Brobecker To: Andreas Schwab Cc: Tom Tromey , gdb-patches@sourceware.org Subject: Re: creating the gdb-7.4 branch tomorrow (?) Message-ID: <20111214125334.GT21915@adacore.com> References: <20111205081911.GG28486@adacore.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-12/txt/msg00447.txt.bz2 > > the "ambiguous linespec" series > > That doesn't work. > Native configuration is powerpc-unknown-linux-gnu I was able to reproduce. I haven't had time to figure it out yet, but, with a simple hello world program: (gdb) b printf Function "printf" not defined. Make breakpoint pending on future shared library load? (y or [n]) n I thought it might be because printf is in a shared library. Breakpoints on the main objfile seem to be working well enough: (gdb) b main Breakpoint 1 at 0x10000454: file toto.c, line 6. So I tried started the program's execution, and things got really ugly: (gdb) start Temporary breakpoint 1 at 0x10000454: file toto.c, line 6. Starting program: /[...]/toto [hangs at near 100% CPU usage] -- Joel