From owner-freebsd-current@freebsd.org Thu Sep 24 09:24:52 2020 Return-Path: Delivered-To: freebsd-current@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 4B4023F1CF1 for ; Thu, 24 Sep 2020 09:24:52 +0000 (UTC) (envelope-from zeising+freebsd@daemonic.se) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2607:f740:d:20::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BxqPv1mxfz4CLy for ; Thu, 24 Sep 2020 09:24:50 +0000 (UTC) (envelope-from zeising+freebsd@daemonic.se) Received: from cid.daemonic.se (localhost [IPv6:::1]) by mail.daemonic.se (Postfix) with ESMTP id 4BxqPr4QB2z3nDJ; Thu, 24 Sep 2020 09:24:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mail.daemonic.se ([IPv6:::1]) (using TLS with cipher ECDHE-RSA-AES128-GCM-SHA256) by cid.daemonic.se (mailscanner.daemonic.se [IPv6:::1]) (amavisd-new, port 10587) with ESMTPS id NkvnoHeSuXRB; Thu, 24 Sep 2020 09:24:48 +0000 (UTC) Received: from garnet.daemonic.se (host-95-194-26-120.mobileonline.telia.com [95.194.26.120]) by mail.daemonic.se (Postfix) with ESMTPSA id 4BxqPr0F9Tz3nDG; Thu, 24 Sep 2020 09:24:47 +0000 (UTC) Subject: Re: geeqie, and neverball build problem on 13-current To: monochrome , freebsd-current@freebsd.org References: <59b99301-028c-132a-c974-30608ea18d24@twcny.rr.com> From: Niclas Zeising Message-ID: <70e5cb57-c78c-39cc-d7f8-20afbefe00fa@daemonic.se> Date: Thu, 24 Sep 2020 11:24:47 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <59b99301-028c-132a-c974-30608ea18d24@twcny.rr.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4BxqPv1mxfz4CLy X-Spamd-Bar: --- X-Spamd-Result: default: False [-3.59 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; ARC_NA(0.00)[]; R_DKIM_ALLOW(-0.20)[daemonic.se:s=20151023]; FREEFALL_USER(0.00)[zeising]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; MID_RHS_MATCH_FROM(0.00)[]; MIME_GOOD(-0.10)[text/plain]; NEURAL_HAM_LONG(-1.01)[-1.013]; RCVD_COUNT_THREE(0.00)[4]; TO_MATCH_ENVRCPT_SOME(0.00)[]; DKIM_TRACE(0.00)[daemonic.se:+]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[daemonic.se,none]; NEURAL_HAM_SHORT(-0.65)[-0.645]; NEURAL_HAM_MEDIUM(-0.93)[-0.931]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:36236, ipnet:2607:f740:d::/48, country:US]; TAGGED_FROM(0.00)[freebsd]; MAILMAN_DEST(0.00)[freebsd-current]; RECEIVED_SPAMHAUS_PBL(0.00)[95.194.26.120:received] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Sep 2020 09:24:52 -0000 On 2020-09-24 11:17, monochrome wrote: > Not sure how long this has been a problem, I noticed with the new > version of geeqie (geeqie-devel builds fine) and found the neverball > problem when rebuilding all packages to investigate. neverball output > changes with consecutive build attempts, geeqie does not. > > This is related to the update of llvm to 11. With this update, builds are by default using -fno-common, which means global variables cannot exist in multiple places. gcc 10 has the same default. A quick fix is to add -fcommon to CFLAGS, but the proper fix is to update the application source to only have the variable in one place. Regards -- Niclas