From owner-cvs-all Wed Jul 19 20:18:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5965437B667; Wed, 19 Jul 2000 20:18:30 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA54942; Wed, 19 Jul 2000 20:18:29 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200007200318.UAA54942@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 19 Jul 2000 20:18:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gdb/gdb dbxread.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/07/19 20:18:29 PDT Modified files: (Branch: RELENG_4) contrib/gdb/gdb dbxread.c Log: GDB on the Alpha has a problem most likey due to being out of sync with the matching Binutils version (in this case GDB 5.0 matches Binutils 2.10.0). Andrew Gallatin has found GCC 2.95.2 + Binutils 2.10.0 puts include file names in the symbol table. This apparently causes two problems: The first being that that init_header_files() is never called, this causes an immediate SEGV in add_this_object_header_file(). The second being that end_symtab() is being called twice, and this is corrupting gdb's memory somehow. This is a hack fix, but it will get us thru 4.1-RELEASE until GDB 5.0 makes it to RELENG_4. Submitted by: gallatin Revision Changes Path 1.2.2.1 +10 -0 src/contrib/gdb/gdb/dbxread.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message