From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Giorgos Keramidas Newsgroups: gmane.emacs.devel Subject: Re: bootstrap & memory allocation troubles Date: Fri, 13 Jan 2006 23:38:19 +0200 Message-ID: <20060113213818.GA18365@flame.pc> References: <20060113155227.GA8439@flame.pc> <87mzhzg75p.fsf-monnier+emacs@gnu.org> <20060113212440.GA77427@flame.pc> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1137190513 29740 80.91.229.2 (13 Jan 2006 22:15:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 13 Jan 2006 22:15:13 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jan 13 23:15:11 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 1ExXCM-0001XY-2x for ged-emacs-devel@m.gmane.org; Fri, 13 Jan 2006 23:15:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ExXEV-0004VR-JT for ged-emacs-devel@m.gmane.org; Fri, 13 Jan 2006 17:17:19 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ExWgW-0002ZO-ID for emacs-devel@gnu.org; Fri, 13 Jan 2006 16:42:12 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ExWgU-0002XW-EJ for emacs-devel@gnu.org; Fri, 13 Jan 2006 16:42:11 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ExWgU-0002XA-0k for emacs-devel@gnu.org; Fri, 13 Jan 2006 16:42:10 -0500 Original-Received: from [195.170.0.95] (helo=kane.otenet.gr) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ExWjW-0004y4-FY for emacs-devel@gnu.org; Fri, 13 Jan 2006 16:45:18 -0500 Original-Received: from flame.pc (aris.bedc.ondsl.gr [62.103.39.226]) by kane.otenet.gr (8.13.4/8.13.4/Debian-8) with SMTP id k0DLdsPN029084; Fri, 13 Jan 2006 23:39:54 +0200 Original-Received: by flame.pc (Postfix, from userid 1001) id 180A911773; Fri, 13 Jan 2006 23:38:19 +0200 (EET) Original-To: Stefan Monnier Content-Disposition: inline In-Reply-To: <20060113212440.GA77427@flame.pc> 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:49030 Archived-At: Can you try and undefine HAVE_POSIX_MEMALIGN so as to tell Emacs not to use it, so we can see if it's related or if it's a completely different problem (maybe a problem with unexec)? Hmmm. Comment it out HAVE_POSIX_MEMALIGN in src/config.h allows Emacs to bootstrap quite fine with the new malloc() implementation too. Very nice. At least, we know how to repeat and work around the bug now :) Thank you Stefan!