From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Antipov Newsgroups: gmane.emacs.devel Subject: Compilation fails with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE Date: Tue, 11 Oct 2011 12:40:07 +0400 Message-ID: <4E9400E7.5030904@yandex.ru> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1318322441 15748 80.91.229.12 (11 Oct 2011 08:40:41 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 11 Oct 2011 08:40:41 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 11 10:40:37 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RDXt5-0000Ne-Dd for ged-emacs-devel@m.gmane.org; Tue, 11 Oct 2011 10:40:35 +0200 Original-Received: from localhost ([::1]:47162 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDXt4-0000qw-4z for ged-emacs-devel@m.gmane.org; Tue, 11 Oct 2011 04:40:34 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:57973) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDXt0-0000qe-Dx for emacs-devel@gnu.org; Tue, 11 Oct 2011 04:40:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RDXsu-00068o-LU for emacs-devel@gnu.org; Tue, 11 Oct 2011 04:40:30 -0400 Original-Received: from mail.dev.rtsoft.ru ([213.79.90.226]:35970) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RDXsu-00068T-7A for emacs-devel@gnu.org; Tue, 11 Oct 2011 04:40:24 -0400 Original-Received: (qmail 6048 invoked from network); 11 Oct 2011 08:40:26 -0000 Original-Received: from unknown (HELO ?192.168.11.195?) (192.168.1.70) by 0 with SMTP; 11 Oct 2011 08:40:26 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:7.0) Gecko/20110927 Thunderbird/7.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 213.79.90.226 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:144876 Archived-At: After changing GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE in src/s/gnu-linu= x.h, compilation fails with a lot of errors looks like the following: frame.c: In function =E2=80=98make_frame_without_minibuffer=E2=80=99: frame.c:437:1: error: pasting "gcpro" and "1.next" does not give a valid = preprocessing token frame.c:437:1: error: invalid suffix "next" on floating constant frame.c:437:1: error: =E2=80=98gcpro=E2=80=99 undeclared (first use in th= is function) frame.c:437:1: note: each undeclared identifier is reported only once for= each function it appears in frame.c:437:11: error: expected =E2=80=98;=E2=80=99 before numeric consta= nt frame.c:437:1: error: pasting "gcpro" and "1.var" does not give a valid p= reprocessing token frame.c:437:1: error: invalid suffix "var" on floating constant frame.c:437:11: error: expected =E2=80=98;=E2=80=99 before numeric consta= nt frame.c:437:1: error: pasting "gcpro" and "1.nvars" does not give a valid= preprocessing token frame.c:437:1: error: invalid suffix "nvars" on floating constant frame.c:437:11: error: expected =E2=80=98;=E2=80=99 before numeric consta= nt Fedora 15, gcc 4.6.1. Is GC_USE_GCPROS_AS_BEFORE broken on the systems where GC_MAKE_GCPROS_NOO= PS is supported? Dmitry