From owner-svn-ports-all@freebsd.org Sat Apr 8 20:19:27 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACE8AD35E08; Sat, 8 Apr 2017 20:19:27 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 90364AD0; Sat, 8 Apr 2017 20:19:27 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id C09265E52; Sat, 8 Apr 2017 20:19:26 +0000 (UTC) From: Jan Beich To: Andreas Tobler Cc: Gerald Pfeifer , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r438061 - in head/lang: gcc/files gcc5/files gcc6/files References: <201704081855.v38ItZH5002650@repo.freebsd.org> Date: Sat, 08 Apr 2017 22:21:07 +0200 In-Reply-To: <201704081855.v38ItZH5002650@repo.freebsd.org> (Andreas Tobler's message of "Sat, 8 Apr 2017 18:55:35 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Apr 2017 20:19:27 -0000 Andreas Tobler writes: > Author: andreast (src committer) > Date: Sat Apr 8 18:55:35 2017 > New Revision: 438061 > URL: https://svnweb.freebsd.org/changeset/ports/438061 > > Log: > Define WCHAR_T for aarch64 on all active gcc (gcc/gcc5 and gcc6) releases. > This define is already in upstream. > The gcc*-devel ports will pickup the commit from upstream. [...] > +@@ -0,0 +1,99 @@ > +/* Definitions for AArch64 running FreeBSD > + Copyright (C) 2016 Free Software Foundation, Inc. > + > @@ -125,6 +125,11 @@ Index: gcc/config/aarch64/aarch64-freebs > +#undef TARGET_BINDS_LOCAL_P > +#define TARGET_BINDS_LOCAL_P default_binds_local_p_2 > + > ++/* Use the AAPCS type for wchar_t, override the one from > ++ config/freebsd.h. */ > ++#undef WCHAR_TYPE > ++#define WCHAR_TYPE "unsigned int" > ++ > +#endif /* GCC_AARCH64_FREEBSD_H */ Does this change the produced binary? If so bump PORTREVISION for package-only users to pick it up. poudriere by itself isn't smart enough to figure out.