Re: [binc] problem with 1.2.13 (freebsd port) - core dumped on signal 10
Peter Stuge <[email protected]> Mon, 12 Sep 2005 15:11:17 +0200
| Newsgroups | gmane.mail.imap.binc.general |
|---|---|
| Message-ID | <[email protected]> |
On Mon, Sep 12, 2005 at 03:04:36PM +0200, Andrea Riela wrote: > On Sep 12, 2005, at 2:57 PM, Jerry Lundström wrote: > >Andrea Riela wrote: > >>nothing, I've the same output: > >>asclepius# gdb -c bincimap-up.core > > > >Errm, you need to give it the program also. > > > >Think its: gdb core program > > hemm .. sorry, I don't understand Try gdb $(which bincimap-up) bincimap-up.core No -c needed when running gdb with two arguments. If which is unavailable on your BSD, just type the full path to bincimap-up as the first argument, on my system this would be: gdb /usr/local/sbin/bincimap-up bincimap-up.core (Of course both commands assume that the file bincimap-up.core exists in the current working directory.) //Peter