From owner-freebsd-ports@freebsd.org Fri Aug 28 13:32:30 2020 Return-Path: Delivered-To: freebsd-ports@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 52BC43B1949 for ; Fri, 28 Aug 2020 13:32:30 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (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 4BdLB56ZnTz4ZS1 for ; Fri, 28 Aug 2020 13:32:29 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92.3 (FreeBSD)) (envelope-from ) id 1kBeUT-000CZm-CI; Fri, 28 Aug 2020 15:32:25 +0200 Date: Fri, 28 Aug 2020 15:32:25 +0200 From: Kurt Jaeger To: Andrea Venturoli Cc: freebsd-ports@freebsd.org Subject: Re: Fwd: [package - head-i386-default][astro/opencpn] Failed for opencpn-5.0.0_1 in build Message-ID: <20200828133225.GQ3539@home.opsec.eu> References: <202008280933.07S9X3J2074396@beefy17.nyi.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Rspamd-Queue-Id: 4BdLB56ZnTz4ZS1 X-Spamd-Bar: / Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [0.00 / 15.00]; local_wl_from(0.00)[freebsd.org]; ASN(0.00)[asn:12502, ipnet:2001:14f8::/32, country:DE] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Aug 2020 13:32:30 -0000 Hi! > Should I consider the following or just trash it, given the warning? The 'jail is newer' warning can be ignored, most of the time. The 'package build' error is probably real. Reason: Very recently, llvm11 was imported, see: https://lists.freebsd.org/pipermail/svn-src-all/2020-August/201174.html That compiler now defaults to -fno-common, where it was -fcommon in the past. This means: variables defined as int xyz; in one .c file and similarly in some other .c file, when linked together, fail to link because there are duplicate definitions. See man cc: -fcommon, -fno-common This flag specifies that variables without initializers get common linkage. It can be disabled with -fno-common. So, if possible, fix your port. > You are receiving this mail as a port that you maintain > is failing to build on the FreeBSD package build server. > Please investigate the failure and submit a PR to fix > build. > > ... > !!! Jail is newer than host. (Jail: 1300113, Host: 1300100) !!! > !!! This is not supported. !!! > !!! Host kernel must be same or newer than jail. !!! > !!! Expect build failures. !!! > ... -- pi@opsec.eu +49 171 3101372 Now what ?