svn commit: r521278 - head/graphics/rawtherapee

Gerald Pfeifer gerald at pfeifer.com
Sat Jan 2 20:25:00 UTC 2021


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


More information about the svn-ports-all mailing list