From owner-freebsd-current@FreeBSD.ORG Tue Oct 12 04:48:02 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 4921116A4CE for ; Tue, 12 Oct 2004 04:48:02 +0000 (GMT) Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id E027743D39 for ; Tue, 12 Oct 2004 04:48:01 +0000 (GMT) (envelope-from mi@aldan.algebra.com) Received: from aldan.algebra.com (mi@localhost [127.0.0.1]) by aldan.algebra.com (8.13.1/8.13.1) with ESMTP id i9C4lv66066945 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 12 Oct 2004 00:47:58 -0400 (EDT) (envelope-from mi@aldan.algebra.com) Received: (from mi@localhost) by aldan.algebra.com (8.13.1/8.13.1/Submit) id i9C4lvMa066944 for current@FreeBSD.org; Tue, 12 Oct 2004 00:47:57 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <200410120447.i9C4lvMa066944@aldan.algebra.com> To: current@FreeBSD.org Date: Tue, 12 Oct 2004 00:47:57 -0400 (EDT) X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7w y+z3/UR{6SCQ X-Mailer: ELM [version 2.4ME+ PL99b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Mailman-Approved-At: Tue, 12 Oct 2004 14:36:20 +0000 Subject: what's wrong with my gdb? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Oct 2004 04:48:02 -0000 Hi! The debugger does not seem to work after a recent (Sunday) upgrade. What's wrong? Thanks! -mi mi@aldan:~/t (543) cc -g -o t t.c mi@aldan:~/t (544) cat t.c int main() { return 0; } mi@aldan:~/t (545) gdb t GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"... (gdb) b main Breakpoint 1 at 0x8048500: file t.c, line 3. (gdb) r Starting program: /home/mi/t/t Program exited normally. You can't do that without a process to debug. (gdb)