From owner-freebsd-current@FreeBSD.ORG Fri Jul 16 10:04:43 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77D3216A4CE for ; Fri, 16 Jul 2004 10:04:43 +0000 (GMT) Received: from smtp002.bizmail.yahoo.com (smtp002.bizmail.yahoo.com [216.136.172.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 62AD643D5C for ; Fri, 16 Jul 2004 10:04:43 +0000 (GMT) (envelope-from noackjr@alumni.rice.edu) Received: from unknown (HELO optimator.noacks.org) (noackjr@supercrime.org@70.240.197.108 with login) by smtp002.bizmail.yahoo.com with SMTP; 16 Jul 2004 10:04:43 -0000 Received: from localhost (localhost [127.0.0.1]) by optimator.noacks.org (Postfix) with ESMTP id 3B21861B4; Fri, 16 Jul 2004 05:04:42 -0500 (CDT) Received: from optimator.noacks.org ([127.0.0.1]) by localhost (optimator.noacks.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 00579-01-2; Fri, 16 Jul 2004 05:04:40 -0500 (CDT) Received: from compgeek.noacks.org (compgeek [192.168.1.10]) by optimator.noacks.org (Postfix) with ESMTP id B804D61C7; Fri, 16 Jul 2004 05:04:40 -0500 (CDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by compgeek.noacks.org (8.12.11/8.12.11) with ESMTP id i6GA4dcs000740; Fri, 16 Jul 2004 05:04:39 -0500 (CDT) (envelope-from noackjr@alumni.rice.edu) Message-ID: <40F7A837.9020700@alumni.rice.edu> Date: Fri, 16 Jul 2004 05:04:39 -0500 From: Jon Noack User-Agent: Mozilla Thunderbird 0.7.1 (X11/20040629) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway References: <200407151424.i6FEOdoq060881@fledge.watson.org> <40F75738.2000604@alumni.rice.edu> <20040716060312.GA57223@xor.obsecurity.org> In-Reply-To: <20040716060312.GA57223@xor.obsecurity.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at noacks.org cc: re@FreeBSD.org cc: current@FreeBSD.org Subject: Re: 5.3-RELEASE TODO X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: noackjr@alumni.rice.edu List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jul 2004 10:04:43 -0000 On 07/16/04 01:03, Kris Kennaway wrote: > On Thu, Jul 15, 2004 at 11:19:04PM -0500, Jon Noack wrote: >> Hmm, it appears that rpc.lockd died on the server end (at some >> point, anyway). I have a .core but it doesn't appear like it's >> finding any debug symbols. I build everything with -g, so I don't >> know why it can't. I'll keep the core around in case anyone cares. >> Sounds like the problems may already be known, so if it's not >> useful please let me know. > > Debug symbols are stripped by default when the binary is installed. I > think setting STRIP= overrides this; you probably just want to do > cd /usr/src/usr.sbin/rpc.lockd && make install STRIP= Alternatively, could I just use the unstripped binary from /usr/obj as the argument to gdb? Something like this: gdb /usr/obj/usr/src/usr.sbin/rpc.lockd/rpc.lockd rpc.lockd.core Jon