From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Yoshiaki Kasahara Newsgroups: gmane.emacs.devel Subject: Re: Preview: portable dumper Date: Thu, 15 Feb 2018 16:44:54 +0900 (JST) Message-ID: <20180215.164454.1715051798752833495.kasahara@nc.kyushu-u.ac.jp> References: <1775923222.898447.1518559575706@mail.libero.it> <83inb0xkfx.fsf@gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1518680633 31227 195.159.176.226 (15 Feb 2018 07:43:53 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 15 Feb 2018 07:43:53 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 15 08:43:49 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1emECf-00077z-EU for ged-emacs-devel@m.gmane.org; Thu, 15 Feb 2018 08:43:38 +0100 Original-Received: from localhost ([::1]:47073 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1emEEh-000327-Ai for ged-emacs-devel@m.gmane.org; Thu, 15 Feb 2018 02:45:43 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1emEE7-00031I-9O for emacs-devel@gnu.org; Thu, 15 Feb 2018 02:45:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1emEE2-0004Qu-FD for emacs-devel@gnu.org; Thu, 15 Feb 2018 02:45:07 -0500 Original-Received: from elvenbow.nc.kyushu-u.ac.jp ([133.5.6.4]:43580) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1emEE1-0004CT-Nk for emacs-devel@gnu.org; Thu, 15 Feb 2018 02:45:02 -0500 Original-Received: from elvenbow.nc.kyushu-u.ac.jp (localhost [127.0.0.1]) by elvenbow.nc.kyushu-u.ac.jp (8.15.2/8.15.2) with ESMTP id w1F7isCG084534 for ; Thu, 15 Feb 2018 16:44:55 +0900 (JST) (envelope-from kasahara@nc.kyushu-u.ac.jp) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nc.kyushu-u.ac.jp; s=20160627; t=1518680695; bh=oxh3yNAt+Gwk6JESY3etKJI2OX4w3qnGs2E7YyblNEM=; h=Date:Message-Id:To:Subject:From:Mime-Version:Content-Type: Content-Transfer-Encoding; b=JPjC4sBYBPCfJzWmmuiYqA5ixphk4UoF8m3/7TfoDjewTp74CLicn1yGgtd05of2J Z+VWFJ53sYDkFdqpWHOm8SRFITjmOsVyrMzbKc2xr4uAXwnCGBzu7KYPqvHK94WMlJ RqU6h/4AyMQw0x2uQtXkw1+r7Sm2jj+jk/6OugWE= In-Reply-To: <83inb0xkfx.fsf@gnu.org> X-Mailer: Mew version 6.7 on Emacs 27.0 / Mule 6.0 (HANACHIRUSATO) X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x [fuzzy] X-Received-From: 133.5.6.4 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:222761 Archived-At: Hello, I cannot build pdumper branch on FreeBSD 11.1-STABLE with gcc 6.4.0. I guess INLINE macro already contains 'static' on FreeBSD. CC alloc.o alloc.c:377:1: error: duplicate 'static' INLINE static bool vector_marked_p (const struct Lisp_Vector *v); ^~~~~~ alloc.c:378:1: error: duplicate 'static' INLINE static void set_vector_marked (struct Lisp_Vector *v); ^~~~~~ alloc.c:380:1: error: duplicate 'static' INLINE static bool vectorlike_marked_p (const union vectorlike_header *v); ^~~~~~ alloc.c:381:1: error: duplicate 'static' INLINE static void set_vectorlike_marked (union vectorlike_header *v); ^~~~~~ alloc.c:383:1: error: duplicate 'static' INLINE static bool cons_marked_p (const struct Lisp_Cons *c); ^~~~~~ alloc.c:384:1: error: duplicate 'static' INLINE static void set_cons_marked (struct Lisp_Cons *c); ^~~~~~ alloc.c:386:1: error: duplicate 'static' INLINE static bool string_marked_p (const struct Lisp_String *s); ^~~~~~ alloc.c:387:1: error: duplicate 'static' INLINE static void set_string_marked (struct Lisp_String *s); ^~~~~~ alloc.c:389:1: error: duplicate 'static' INLINE static bool symbol_marked_p (const struct Lisp_Symbol *s); ^~~~~~ alloc.c:390:1: error: duplicate 'static' INLINE static void set_symbol_marked (struct Lisp_Symbol *s); ^~~~~~ alloc.c:392:1: error: duplicate 'static' INLINE static bool misc_any_marked_p (const struct Lisp_Misc_Any *m); ^~~~~~ alloc.c:393:1: error: duplicate 'static' INLINE static void set_misc_any_marked (struct Lisp_Misc_Any *m); ^~~~~~ alloc.c:395:1: error: duplicate 'static' INLINE static bool marker_marked_p (const struct Lisp_Marker *m); ^~~~~~ alloc.c:396:1: error: duplicate 'static' INLINE static void set_marker_marked (struct Lisp_Marker *m); ^~~~~~ alloc.c:398:1: error: duplicate 'static' INLINE static bool overlay_marked_p (const struct Lisp_Overlay *m); ^~~~~~ alloc.c:399:1: error: duplicate 'static' INLINE static void set_overlay_marked (struct Lisp_Overlay *m); ^~~~~~ alloc.c:401:1: error: duplicate 'static' INLINE static bool interval_marked_p (INTERVAL i); ^~~~~~ alloc.c:402:1: error: duplicate 'static' INLINE static void set_interval_marked (INTERVAL i); ^~~~~~ gmake[2]: *** [Makefile:386: alloc.o] Error 1 Regards, -- Yoshiaki Kasahara kasahara@nc.kyushu-u.ac.jp