From owner-svn-ports-all@freebsd.org Sat Jan 2 20:25:00 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C73D44DE040; Sat, 2 Jan 2021 20:25:00 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D7YKS19zxz4vkq; Sat, 2 Jan 2021 20:24:59 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 782A533E50; Sat, 2 Jan 2021 15:24:59 -0500 (EST) Received: from [192.168.1.5] (77.118.226.34.wireless.dyn.drei.com [77.118.226.34]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id B422633E48; Sat, 2 Jan 2021 15:24:58 -0500 (EST) Date: Sat, 2 Jan 2021 21:24:54 +0100 (CET) From: Gerald Pfeifer To: Matthias Andree cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r521278 - head/graphics/rawtherapee In-Reply-To: <201912291234.xBTCYYJK087997@repo.freebsd.org> Message-ID: <455a37b-e2cd-5c23-f118-27a31ac12a@pfeifer.com> References: <201912291234.xBTCYYJK087997@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 4D7YKS19zxz4vkq X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of gerald@pfeifer.com designates 209.68.5.143 as permitted sender) smtp.mailfrom=gerald@pfeifer.com X-Spamd-Result: default: False [-3.30 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FREEFALL_USER(0.00)[gerald]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; R_SPF_ALLOW(-0.20)[+a:hamza.pair.com:c]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[pfeifer.com]; RBL_DBL_DONT_QUERY_IPS(0.00)[209.68.5.143:from]; TO_DN_SOME(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; SPAMHAUS_ZRD(0.00)[209.68.5.143:from:127.0.2.255]; RCVD_COUNT_THREE(0.00)[3]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:7859, ipnet:209.68.0.0/18, country:US]; RCVD_TLS_LAST(0.00)[]; MAILMAN_DEST(0.00)[svn-ports-all,svn-ports-head] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 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, 02 Jan 2021 20:25:00 -0000 On Sun, 29 Dec 2019, Matthias Andree wrote: > +# FreeBSD 11.2/12.0's base clang 6.0.1 emits worse code with > +# considerably higher processing times, and on i386 additional calls to > +# __atomic_*(), so we shall stick to GCC 9.x for now > +USE_GCC= 9+ We generally try to avoid referring to specific versions of GCC. Would you mind considering something like the below? (It will default to GCC 9 right now except for powerpcspe.) Thank you, Gerald Index: graphics/rawtherapee/Makefile =================================================================== --- graphics/rawtherapee/Makefile (revision 559931) +++ graphics/rawtherapee/Makefile (working copy) @@ -38,8 +38,8 @@ # As of 2019-09-29, this port is known to be miscompiled by clang90 # (SIGSEGV or SIBGUS) and 12.1's base clang. -# So we shall stick to GCC 9.x for now -USE_GCC= 9+ +# So we shall stick to modern GCC for now +USE_GCC= yes USE_GNOME= gtkmm30 librsvg2 INSTALLS_ICONS= yes