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: Building Emacs from a new MinGW environment Date: Wed, 18 Sep 2013 16:14:34 +0300 Message-ID: <83hadinuf9.fsf@gnu.org> References: <83sixwfdjk.fsf@gnu.org> <834n9nhhp6.fsf@gnu.org> <83ppsbfoe7.fsf@gnu.org> <83mwnffkom.fsf@gnu.org> <83k3ijfhk0.fsf@gnu.org> <83hadnf7gs.fsf@gnu.org> <83hadmqvql.fsf@gnu.org> <83txhkpszv.fsf@gnu.org> <83pps8pnc9.fsf@gnu.org> <83ob7splia.fsf@gnu.org> <83k3ifq5o5.fsf@gnu.org> <83d2o7q28r.fsf@gnu.org> <8338p3pded.fsf@gnu.org> <83r4cmo9m2.fsf@gnu.org> <83pps6o3f2.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1379510088 10052 80.91.229.3 (18 Sep 2013 13:14:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 18 Sep 2013 13:14:48 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dani Moncayo Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Sep 18 15:14:50 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VMHak-0005dl-Ld for ged-emacs-devel@m.gmane.org; Wed, 18 Sep 2013 15:14:50 +0200 Original-Received: from localhost ([::1]:46884 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMHaj-0006lQ-Sv for ged-emacs-devel@m.gmane.org; Wed, 18 Sep 2013 09:14:49 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36868) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMHab-0006l8-Sf for emacs-devel@gnu.org; Wed, 18 Sep 2013 09:14:47 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VMHaW-0008JM-1P for emacs-devel@gnu.org; Wed, 18 Sep 2013 09:14:41 -0400 Original-Received: from mtaout23.012.net.il ([80.179.55.175]:39619) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VMHaV-0008JB-Pq for emacs-devel@gnu.org; Wed, 18 Sep 2013 09:14:35 -0400 Original-Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0MTB00A00OQEYF00@a-mtaout23.012.net.il> for emacs-devel@gnu.org; Wed, 18 Sep 2013 16:14:34 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MTB00AY5OS9S9B0@a-mtaout23.012.net.il>; Wed, 18 Sep 2013 16:14:34 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.175 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:163436 Archived-At: > Date: Wed, 18 Sep 2013 14:31:06 +0200 > From: Dani Moncayo > Cc: Emacs development discussions > > #11 0x759477f7 in UnhandledExceptionFilter () > from C:\Windows\syswow64\kernel32.dll > #12 0x0088eaf8 in ?? () > #13 0x776b8f74 in msvcrt!abort () from C:\Windows\syswow64\msvcrt.dll > #14 0x6e956f62 in libgcc_s_dw2-1!__deregister_frame_info_bases () > from c:\mingw-emacs\bin\libgcc_s_dw2-1.dll ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > #15 0x03d5c428 in ?? () > #16 0x7765c3e9 in msvcrt!isspace () from C:\Windows\syswow64\msvcrt.dll > #17 0x776636bb in msvcrt!exit () from C:\Windows\syswow64\msvcrt.dll > #18 0x010db6e3 in Fkill_emacs (arg=0) at c:/emacs/emacs.git/src/emacs.c:1899 That libgcc_s_dw2-1.dll is the problem, I think. I think this might be the same issue as summarized here: http://sourceforge.net/mailarchive/message.php?msg_id=31010191 and in the links in that message. Alternatively, perhaps you have conflicting versions of libgcc_s_dw2-1.dll on your system. Questions: . Did you install a different version of GCC, as part of your MinGW re-installation? If so, which GCC version do you have now, and which one did you have before? . Does temacs.exe you produce depend on libgcc_s_dw2-1.dll? (Use the dependency walker or objdump to find out.) If not, perhaps some libraries that Emacs loads depend on that DLL? . If you add -shared-libgcc switch to the temacs link command line, does the problem go away?