From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tobias Bading Newsgroups: gmane.emacs.bugs Subject: Re: 23.0; Current CVS Emacs: compiling fails on windows xp using msvc 2003 Date: Sun, 9 Mar 2008 09:02:48 +0100 Message-ID: <63CE8CBD-B97F-4AE2-A1E9-6B3E7E46245A@t-online.de> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v753) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1205049794 18859 80.91.229.12 (9 Mar 2008 08:03:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 9 Mar 2008 08:03:14 +0000 (UTC) Cc: rms@gnu.org To: bug-gnu-emacs@gnu.org, Andreas Schwab , christoph.conrad@gmx.de Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sun Mar 09 09:03:41 2008 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JYGVQ-0004qW-Um for geb-bug-gnu-emacs@m.gmane.org; Sun, 09 Mar 2008 09:03:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JYGUs-0005qu-NE for geb-bug-gnu-emacs@m.gmane.org; Sun, 09 Mar 2008 04:03:06 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JYGUn-0005pE-4G for bug-gnu-emacs@gnu.org; Sun, 09 Mar 2008 04:03:01 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JYGUk-0005oy-Hw for bug-gnu-emacs@gnu.org; Sun, 09 Mar 2008 04:02:59 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JYGUk-0005ov-Bs for bug-gnu-emacs@gnu.org; Sun, 09 Mar 2008 04:02:58 -0400 Original-Received: from mx20.gnu.org ([199.232.41.8]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JYGUf-0008Do-QJ; Sun, 09 Mar 2008 04:02:54 -0400 Original-Received: from mailout09.sul.t-online.de ([194.25.134.84] helo=mailout09.sul.t-online.com) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JYGUe-0007KS-H2; Sun, 09 Mar 2008 04:02:52 -0400 Original-Received: from fwd29.aul.t-online.de by mailout09.sul.t-online.com with smtp id 1JYGUc-00083v-02; Sun, 09 Mar 2008 09:02:50 +0100 Original-Received: from [192.168.2.11] (ToZ39BZrwh6kxJ1UbXKGaO1yuthDhQq55HJPxBfM+GnUI1z9nESHh4BfVTvKfxegof@[84.191.223.244]) by fwd29.t-online.de with esmtp id 1JYGUS-0pWT9k0; Sun, 9 Mar 2008 09:02:40 +0100 In-Reply-To: X-Mailer: Apple Mail (2.753) X-ID: ToZ39BZrwh6kxJ1UbXKGaO1yuthDhQq55HJPxBfM+GnUI1z9nESHh4BfVTvKfxegof X-TOI-MSGID: 09f59c13-eb78-4393-a658-be5b78b28c9a X-detected-kernel: by mx20.gnu.org: Linux 2.6 (newer, 3) X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:17693 Archived-At: > The compiler is too dumb to know that abort never returns. > > Maybe abort needs one more nickel in order to return. :-) (sorry for replying to this mail instead of Andreas' or Christoph's, but I just joined this list, don't have all of their original mails/ postings and my stupid news server won't let me post to gnu.emacs.bug :-() Anyway, process.h and stdlib.h of the old Mickeysoft DevStudio 6.0 SP6 both contain #if _MSC_VER >= 1200 _CRTIMP __declspec(noreturn) void __cdecl abort(void); so your compiler *should* know better. At least he can't blaim it on the header files ;-). (_MSC_VER=1200 is the Visual C++ 6.0 compiler, and your's is newer) If your header files contain the same __declspec(noreturn), I'd say the compiler is talking about an other path of control not involving abort(). Have a nice day, Tobias PS: Please get the english version of DevStudio next time, the german translations of some error messages are plain stupid... or feed them to babelfish before posting ;-).