Date: Mon, 18 Feb 2002 08:10:02 -0500 (EST) From: Daniel Eischen <eischen@pcnet1.pcnet.com> To: Peter Wemm <peter@wemm.org> Cc: Bernd Walter <ticso@cicely8.cicely.de>, alpha@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: OK, who broke alpha this time? :-/ Message-ID: <Pine.GSO.4.10.10202180759570.20552-100000@pcnet1.pcnet.com> In-Reply-To: <20020218114826.AAFF43A9A@overcee.wemm.org>
next in thread | previous in thread | raw e-mail | index | archive | help
And when is alpha buildworld going to work again? It's been busted for well over a week. The following patch posted by drew gets around the problem for now. If we want people to test changes on on the alpha, then we should try and make sure that world isn't broken for too long on it. I know the fix below isn't correct, but it at least allows world to build. Index: usr.bin/binutils/gdb/alpha//kvm-fbsd.c =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/binutils/gdb/alpha/kvm-fbsd.c,v retrieving revision 1.6 diff -u -r1.6 kvm-fbsd.c --- usr.bin/binutils/gdb/alpha//kvm-fbsd.c 13 Oct 2001 04:38:46 -0000 1.6 +++ usr.bin/binutils/gdb/alpha//kvm-fbsd.c 17 Feb 2002 21:57:25 -0000 @@ -390,7 +390,7 @@ addr = (CORE_ADDR)parse_and_eval_address(arg); /* Read the PCB address in proc structure. */ - addr += (int) &((struct proc *)0)->p_thread.td_pcb; + addr += (int) &((struct proc *)0)->p_xxthread.td_pcb; if (kvread(addr, &val)) error("cannot read pcb ptr"); -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.4.10.10202180759570.20552-100000>