From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: jhd Newsgroups: gmane.emacs.devel Subject: Re: New dumping problem... Date: Fri, 1 Jul 2005 11:54:59 +0200 Message-ID: References: <20050627.010159.164391252.jet@gyve.org> <20050701.012657.123274320.yamato@redhat.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v730) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1120211773 26978 80.91.229.2 (1 Jul 2005 09:56:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 1 Jul 2005 09:56:13 +0000 (UTC) Cc: yamaoka@jpl.org, rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 01 11:56:11 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DoIFh-00043Z-9l for ged-emacs-devel@m.gmane.org; Fri, 01 Jul 2005 11:56:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DoIO7-0008W5-AA for ged-emacs-devel@m.gmane.org; Fri, 01 Jul 2005 06:04:47 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DoIJt-0007DH-6g for emacs-devel@gnu.org; Fri, 01 Jul 2005 06:00:25 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DoIJq-0007Bl-9f for emacs-devel@gnu.org; Fri, 01 Jul 2005 06:00:24 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DoIJp-000765-Hq for emacs-devel@gnu.org; Fri, 01 Jul 2005 06:00:21 -0400 Original-Received: from [195.54.107.70] (helo=mxfep01.bredband.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DoIK3-000654-Tn; Fri, 01 Jul 2005 06:00:36 -0400 Original-Received: from coolsville.localdomain ([83.226.180.210] [83.226.180.210]) by mxfep01.bredband.com with ESMTP id <20050701095519.RGFA24612.mxfep01.bredband.com@coolsville.localdomain>; Fri, 1 Jul 2005 11:55:19 +0200 In-Reply-To: <20050701.012657.123274320.yamato@redhat.com> Original-To: Masatake YAMATO X-Mailer: Apple Mail (2.730) 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:40022 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40022 > > I find the way to fix the problem in C source code level. > I have already installed the fix. > Please, try to run make without setarch. Is there no #define in some header-file you can look for? A configure test would be preferrable to hardcoding OS specific constants into Emacs. /* A flag to turn off address randomization which is introduced in linux kernel shipped with fedora core 4 */ #define ADD_NO_RANDOMIZE 0x0040000 personality (PER_LINUX32 | ADD_NO_RANDOMIZE); #undef ADD_NO_RANDOMIZE FWIW, Fedora core 2 works OK with this change. Jan D.