From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Paul Eggert Newsgroups: gmane.emacs.devel Subject: Re: Anyone built Emacs with gcc-3.3? Date: Mon, 14 Jul 2003 10:47:12 -0700 (PDT) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <200307141747.h6EHlCu26117@green.twinsun.com> References: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1058204967 16177 80.91.224.249 (14 Jul 2003 17:49:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 14 Jul 2003 17:49:27 +0000 (UTC) Cc: emacs-pretesters@gnu.org, emacs-devel@gnu.org, ebotcazou@gcc.gnu.org, ishikawa@yk.rim.or.jp Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Jul 14 19:49:22 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19c7Ry-0004CO-00 for ; Mon, 14 Jul 2003 19:49:22 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19c7fK-0000OH-00 for ; Mon, 14 Jul 2003 20:03:10 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19c7SU-0005TR-Rt for emacs-devel@quimby.gnus.org; Mon, 14 Jul 2003 13:49:54 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19c7SG-0005DZ-6O for emacs-devel@gnu.org; Mon, 14 Jul 2003 13:49:40 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19c7Qb-0002kt-RZ for emacs-devel@gnu.org; Mon, 14 Jul 2003 13:47:58 -0400 Original-Received: from alcor.twinsun.com ([198.147.65.9]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19c7Q3-0002Of-9P; Mon, 14 Jul 2003 13:47:23 -0400 Original-Received: from green.twinsun.com ([192.54.239.71]) by alcor.twinsun.com (8.12.6/8.12.6) with ESMTP id h6EHlDZ9011157; Mon, 14 Jul 2003 10:47:13 -0700 (PDT) Original-Received: from shade.twinsun.com (shade.twinsun.com [192.54.239.27]) by green.twinsun.com (8.11.7+Sun/8.11.7) with SMTP id h6EHlCi26121; Mon, 14 Jul 2003 10:47:12 -0700 (PDT) Original-Received: from green.twinsun.com ([192.54.239.71]) by shade.twinsun.com (SAVSMTP 3.1.0.29) with SMTP id M2003071410471216501 ; Mon, 14 Jul 2003 10:47:12 -0700 Original-Received: (from eggert@localhost) by green.twinsun.com (8.11.7+Sun/8.11.7) id h6EHlCu26117; Mon, 14 Jul 2003 10:47:12 -0700 (PDT) Original-To: simon.marshall@misys.com In-reply-to: (simon.marshall@misys.com) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15600 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15600 > From: "Marshall, Simon" > Date: Mon, 14 Jul 2003 12:19:12 +0100 > > alloc.c:398: warning: initialization makes pointer from integer without > a cast Yes, thanks: I fixed that by using the following instead in the version that I checked into the Emacs trunk: Lisp_Object *staticvec[NSTATICS] = {&Vpurify_flag}; > Date: Mon, 14 Jul 2003 23:06:31 +0900 > From: Ishikawa > (Strangely, I didn't have to apply the patch Eric posted. I suspect > that there may be a factor due to different version of Sun's ld. As I understand it, the bug does not always occur: it depends on the layouts of the earlier segments. So it's possible that Eric's patch happened to fix the problem for his particular alignment, even though it shouldn't fix the problem in general (and didn't work for me). > I didn't notice the warning Simon caught because I was > so ecstatic that "make" ended successfully. > I should have scrolled up a little bit to see some warning messages. Yes, that's what happened with me too.