From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28829 invoked by alias); 7 Feb 2004 00:32: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 28822 invoked from network); 7 Feb 2004 00:32:53 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.170.238) by sources.redhat.com with SMTP; 7 Feb 2004 00:32:53 -0000 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id B8B9B2B92; Fri, 6 Feb 2004 19:32:47 -0500 (EST) Message-ID: <4024322F.7020104@gnu.org> Date: Sat, 07 Feb 2004 00:32:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030820 MIME-Version: 1.0 To: Daniel Jacobowitz Cc: John Utz , gdb@sources.redhat.com Subject: Re: stepping thru assembled files that are referenced as temp files ie: /tmp/ccjirvvY.s References: <20040206235810.GA3110@nevyn.them.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-02/txt/msg00068.txt.bz2 >> (gdb) s >> _linear_clear_to_color16 () at /tmp/ccjirvvY.s:27 >> 27 /tmp/ccjirvvY.s: No such file or directory >> in /tmp/ccjirvvY.s >> Current language: auto; currently asm >> (gdb) >> >> how can i tell gdb to stop looking for the tmp-name and look for this >> function in allegro-4.0.3/src/i386/iblit16.s? > > > I'm guessing it's iblit16.S, or you're arranging to run it through the > C preprocessor some other way. If so, it's a known bug - no one's > thought of a good solution yet. Teach the assembler to respect cpp line directives, like old fashioned cc1 knew how to do? > You can look at the assembly code using disassemble, for what that's > worth. Andrew