Date: Sat, 2 Jan 2021 21:24:54 +0100 (CET) From: Gerald Pfeifer <gerald@pfeifer.com> To: Matthias Andree <mandree@FreeBSD.org> Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r521278 - head/graphics/rawtherapee Message-ID: <455a37b-e2cd-5c23-f118-27a31ac12a@pfeifer.com> In-Reply-To: <201912291234.xBTCYYJK087997@repo.freebsd.org> References: <201912291234.xBTCYYJK087997@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?455a37b-e2cd-5c23-f118-27a31ac12a>