From mboxrd@z Thu Jan 1 00:00:00 1970 From: "H . J . Lu" To: Stan Shebs Cc: GDB Subject: Re: Why is gdbreplay built, but not installed? Date: Tue, 07 Aug 2001 12:34:00 -0000 Message-id: <20010807123421.B9434@lucon.org> References: <20010806183753.A25769@lucon.org> <3B7041BF.D63442B9@apple.com> X-SW-Source: 2001-08/msg00045.html On Tue, Aug 07, 2001 at 12:30:07PM -0700, Stan Shebs wrote: > "H . J . Lu" wrote: > > > > Why is gdbreplay built, but not installed? > > It's a pretty specialized tool used only for debugging cross GDBs. > I only know of it being used once or twice since it was written, > but for those couple of occasions, it was essential, so it's worth > having it be available and known to work, but not really worth > taking up space in the whole world's /usr. 1. gdbserver is not built/installed by default. You have to do # make -C gdb/gdbserver # make -C gdb/gdbserver install 2. gdbreplay is very small # ls -l gdbreplay gdbserver -rwxr-xr-x 1 hjl users 47000 Aug 6 18:45 gdbreplay -rwxr-xr-x 1 hjl users 145836 Aug 6 18:45 gdbserver I don't know what you meant by "taking up space". H.J.