From owner-freebsd-alpha Sat Nov 28 21:38:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA25107 for freebsd-alpha-outgoing; Sat, 28 Nov 1998 21:38:03 -0800 (PST) (envelope-from owner-freebsd-alpha@FreeBSD.ORG) Received: from mail.sat.t.u-tokyo.ac.jp (dryad.sat.t.u-tokyo.ac.jp [133.11.156.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA25102 for ; Sat, 28 Nov 1998 21:38:01 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [133.11.156.43]) by mail.sat.t.u-tokyo.ac.jp (8.8.6/3.4Wbeta6-SAT1.0) with ESMTP id OAA09857; Sun, 29 Nov 1998 14:37:52 +0900 (JST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from localhost by ett.sat.t.u-tokyo.ac.jp (8.8.8/sat-V0.6) id OAA06264; Sun, 29 Nov 1998 14:37:52 +0900 (JST) To: dfr@nlsystems.com Cc: freebsd-alpha@FreeBSD.ORG Subject: Re: gdb In-Reply-To: Your message of "Sat, 28 Nov 1998 10:13:27 +0000 (GMT)" References: X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7:#j7i14gu$ jgR\S*&C3R/pJX Date: Sun, 29 Nov 1998 14:37:51 +0900 From: Hidetoshi Shimokawa X-Dispatcher: imput version 980905(IM100) Lines: 28 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org dfr> I have some patches to gdb-4.17 (attached) to make it build for dfr> FreeBSD/alpha. To get it building in the world, I would probably need to Thanks, it works fine. I finally found the reason why /usr/bin/ftp gets signal 11. This is because of a bug of libedit which is harmless on i386 but critial on alpha. Index: term.c =================================================================== RCS file: /pub/FreeBSD-CVS/src/lib/libedit/term.c,v retrieving revision 1.10 diff -u -r1.10 term.c --- term.c 1998/06/30 18:03:05 1.10 +++ term.c 1998/11/28 21:29:10 @@ -240,7 +240,7 @@ el->el_term.t_str = (char **) el_malloc(T_str * sizeof(char*)); (void) memset(el->el_term.t_str, 0, T_str * sizeof(char*)); el->el_term.t_val = (int *) el_malloc(T_val * sizeof(int)); - (void) memset(el->el_term.t_val, 0, T_val * sizeof(char*)); + (void) memset(el->el_term.t_val, 0, T_val * sizeof(int)); term_outfile = el->el_outfile; (void) term_set(el, NULL); term_init_arrow(el); /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: finger -l simokawa@sat.t.u-tokyo.ac.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message