From owner-svn-ports-all@freebsd.org Sun Sep 29 09:35:33 2019 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 928B8FAD87; Sun, 29 Sep 2019 09:35:33 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46h0ks3K9Sz4LdP; Sun, 29 Sep 2019 09:35:33 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 560FD181CB; Sun, 29 Sep 2019 09:35:33 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8T9ZXba021807; Sun, 29 Sep 2019 09:35:33 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8T9ZXg8021806; Sun, 29 Sep 2019 09:35:33 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201909290935.x8T9ZXg8021806@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sun, 29 Sep 2019 09:35:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513210 - head/graphics/rawtherapee X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/graphics/rawtherapee X-SVN-Commit-Revision: 513210 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 29 Sep 2019 09:35:33 -0000 Author: mandree Date: Sun Sep 29 09:35:32 2019 New Revision: 513210 URL: https://svnweb.freebsd.org/changeset/ports/513210 Log: Drop default arguments from _LTO_FLAGS. Context: PR: 240594 Modified: head/graphics/rawtherapee/Makefile Modified: head/graphics/rawtherapee/Makefile ============================================================================== --- head/graphics/rawtherapee/Makefile Sun Sep 29 09:08:04 2019 (r513209) +++ head/graphics/rawtherapee/Makefile Sun Sep 29 09:35:32 2019 (r513210) @@ -35,7 +35,16 @@ USE_GNOME= gtkmm30 librsvg2 USE_GCC= 9+ USE_BINUTILS= yes -_LTO_FLAGS= -flto=${MAKE_JOBS_NUMBER} -fuse-linker-plugin -fno-fat-lto-objects +# gcc needs -flto=${MAKE_JOBS_NUMBER} for parallel link +# and does not understand -flto=thin +# +# llvm/clang needs -flto=thin and will automatically parallelize the link +# +# As of 2019-09-29, this port is known to be micompiled by clang90 (SIGSEGV or SIBGUS) +# FreeBSD 12.0's base clang 6.0.1 emits worse code with considerably higher +# processing times. +# so we shall stick to GCC 9.x for now +_LTO_FLAGS= -flto=${MAKE_JOBS_NUMBER} _AR= ${CC:S/gcc/gcc-ar/} _RANLIB= ${CC:S/gcc/gcc-ranlib/} CFLAGS+= -I${LOCALBASE}/include -fPIC ${_LTO_FLAGS} ${_OPT_FLAGS}