From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Harald Maier Newsgroups: gmane.emacs.devel Subject: Two issues about the cygwin build Date: Mon, 31 Oct 2005 13:26:43 +0100 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1130766131 29527 80.91.229.2 (31 Oct 2005 13:42:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 31 Oct 2005 13:42:11 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 31 14:42:10 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EWZuy-0005Pk-3b for ged-emacs-devel@m.gmane.org; Mon, 31 Oct 2005 14:41:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EWZux-0001c3-2e for ged-emacs-devel@m.gmane.org; Mon, 31 Oct 2005 08:41:43 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EWYkc-00034H-66 for emacs-devel@gnu.org; Mon, 31 Oct 2005 07:26:58 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EWYkY-00033H-CT for emacs-devel@gnu.org; Mon, 31 Oct 2005 07:26:55 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EWYkY-00033E-1W for emacs-devel@gnu.org; Mon, 31 Oct 2005 07:26:54 -0500 Original-Received: from [212.227.126.186] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EWYkX-0002ec-Uq for emacs-devel@gnu.org; Mon, 31 Oct 2005 07:26:54 -0500 Original-Received: from p54982BF7.dip0.t-ipconnect.de [84.152.43.247] (helo=gaia.local) by mrelayeu.kundenserver.de (node=mrelayeu6) with ESMTP (Nemesis), id 0ML29c-1EWYkU3BqC-0008LM; Mon, 31 Oct 2005 13:26:50 +0100 Original-Received: by gaia.local (Postfix, from userid 501) id 3C5922753ED; Mon, 31 Oct 2005 13:26:43 +0100 (CET) Original-To: emacs-devel@gnu.org User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin) X-Provags-ID: kundenserver.de abuse@kundenserver.de login:7f9705e6678292fb4e27195dea438aa3 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:45170 Archived-At: Hello all, after the today checkout I did a build in a cygwin environment. The following two issues were raised: 1) sheap.c: The size of the heap (7 * 1024 *1024) is no longer enough for bootstrapping. After increasing the heap size to (8 * 1024 * 1024) bootstrapping did work. 2) alloc.c: The function proto type of void refill_memory_reserve (); is inside of GC_MALLOC_CHECK. Under cygwin this code is not valid so the compiler did not find that prototype. After I moved the prototype outside of GC_MALLOC_CHECK the file compiled fine. Harald