Date: Thu, 7 Dec 2000 15:46:02 -0500 From: Brian Dean <bsd@bsdhome.com> To: Zhiui Zhang <zzhang@cs.binghamton.edu> Cc: freebsd-hackers@FreeBSD.ORG Subject: Re: ptrace(PT_GETDBREGS) message in remote debugging Message-ID: <20001207154602.A8268@vger.bsdhome.com> In-Reply-To: <Pine.SOL.4.21.0012071528160.21496-100000@onyx>; from zzhang@cs.binghamton.edu on Thu, Dec 07, 2000 at 03:30:51PM -0500 References: <20001206194209.B94389@vger.bsdhome.com> <Pine.SOL.4.21.0012071528160.21496-100000@onyx>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Dec 07, 2000 at 03:30:51PM -0500, Zhiui Zhang wrote: > Thanks. I tried this on FreeBSD 4.2-Release (because I do not have a > stable or current), but I failed: > > # make > > Warning: Object directory not changed from original > /usr/src/gnu/usr.bin/binutils/gdb > > > cc: ../libbfd/libbfd.a: No such file or directory > cc: ../libopcodes/libopcodes.a: No such file or directory > cc: ../libiberty/libiberty.a: No such file or directory > *** Error code 1 > > Stop in /usr/src/gnu/usr.bin/binutils/gdb. > > What should I do? Hmmm, looks like you haven't built world on this machine. No worries, just do this: % cd /usr/src/gnu/usr.bin/binutils % (cd libbfd && make) % (cd libopcodes && make) % (cd libiberty && make) % (cd gdb && make && make install) This should build the missing libs and then gdb should link correctly. -Brian -- Brian Dean bsd@FreeBSD.org bsd@bsdhome.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001207154602.A8268>