From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: bootstrap problem Date: Thu, 25 May 2006 21:26:14 +0300 Message-ID: References: <20060525133349.1416@henman-np.b-eng.it.to-be.co.jp> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1148581612 27178 80.91.229.2 (25 May 2006 18:26:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 25 May 2006 18:26:52 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 25 20:26:47 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FjKXX-00043S-C7 for ged-emacs-devel@m.gmane.org; Thu, 25 May 2006 20:26:31 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FjKXW-0000qT-Fr for ged-emacs-devel@m.gmane.org; Thu, 25 May 2006 14:26:30 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FjKXL-0000qO-Qb for emacs-devel@gnu.org; Thu, 25 May 2006 14:26:19 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FjKXJ-0000q9-EG for emacs-devel@gnu.org; Thu, 25 May 2006 14:26:18 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FjKXJ-0000q3-7B for emacs-devel@gnu.org; Thu, 25 May 2006 14:26:17 -0400 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FjKc1-0004kF-M5 for emacs-devel@gnu.org; Thu, 25 May 2006 14:31:09 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-84-228-4-170.inter.net.il [84.228.4.170]) by romy.inter.net.il (MOS 3.7.3-GA) with ESMTP id ERM03127 (AUTH halo1); Thu, 25 May 2006 21:26:09 +0300 (IDT) Original-To: "djh" In-reply-to: <20060525133349.1416@henman-np.b-eng.it.to-be.co.jp> X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:55289 Archived-At: > From: "djh" > Date: Thu, 25 May 2006 13:33:49 +0900 > cc: > > Then by hand > $ cd ...cvs/emacs/src > $ export EMACSLOADPATH=/cygdrive/c/emacs/cvs/emacs/lisp > $ ./bootstrap-emacs.exe -batch --no-site-file --multibyte -f batch-byte-compile-if-not-done byte-opt.el > > Fatal error (6)zsh: abort (core dumped) ./bootstrap-emacs.exe -batch --no-site-file --multibyte -f byte-opt.el > > Any ideas or advice to get more data to isolate the problem is appreciated. Now that we know which command crashes, run it under GDB: $ cd ...cvs/emacs/src $ export EMACSLOADPATH=/cygdrive/c/emacs/cvs/emacs/lisp $ gdb ./bootstrap-emacs.exe $ run -batch --no-site-file --multibyte -f batch-byte-compile-if-not-done byte-opt.el Now when Emacs crashes, GDB will get control. Then type these two commands: (gdb) backtrace (gdb) xbacktrace and tell what they print. TIA