From owner-svn-ports-head@freebsd.org Sun Dec 24 08:44:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C18AEA6771; Sun, 24 Dec 2017 08:44:57 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 399196F239; Sun, 24 Dec 2017 08:44:57 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 68C5126005; Sun, 24 Dec 2017 08:44:56 +0000 (UTC) Date: Sun, 24 Dec 2017 08:44:56 +0000 From: Alexey Dokuchaev To: Jan Beich Cc: Mark Linimon , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r456900 - in head: devel/pire net-p2p/bitcoin-daemon net-p2p/bitcoin-utils security/p5-Net-SinFP Message-ID: <20171224084456.GA51127@FreeBSD.org> References: <201712210931.vBL9VQTG047259@repo.freebsd.org> <20171222180401.GB95248@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171222180401.GB95248@FreeBSD.org> User-Agent: Mutt/1.9.2 (2017-12-15) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2017 08:44:57 -0000 On Fri, Dec 22, 2017 at 06:04:01PM +0000, Alexey Dokuchaev wrote: > On Fri, Dec 22, 2017 at 06:46:08PM +0100, Jan Beich wrote: > > Jan Beich writes: > > > Mark Linimon writes: > > >> New Revision: 456900 > > >> URL: https://svnweb.freebsd.org/changeset/ports/456900 > > >> > > >> Log: > > >> Use a more modern way of distinguishing "big-endian platforms". > > >> > > >> This will attempt builds on arm platforms on the cluster. > > >> ... > > >> Modified: head/devel/pire/Makefile > > >> > > >> +NOT_FOR_ARCHS= powerpc powerpc64 sparc64 > > >> +NOT_FOR_ARCHS_REASON= does not support big-endian architectures > > >> + > > >> USE_GITHUB= yes > > >> GH_ACCOUNT= dprokoptsev > > >> > > >> @@ -21,8 +24,5 @@ INSTALL_TARGET= install-strip > > >> USES= autoreconf bison libtool > > >> USE_LDCONFIG= yes > > >> TEST_TARGET= check > > >> - > > >> -ONLY_FOR_ARCHS= amd64 i386 > > >> -ONLY_FOR_ARCHS_REASON= not yet ported to big-endian platforms > > > [...] > > > > > > According to arch(7) filtered by https://pkg-status.freebsd.org/ you've > > > missed at least mips and mips64. Is this intentional? > > > > devel/pire built fine[1] on 11.1 mips64. ONLY_FOR_ARCHS was originally > > added by you in r265679. Can you recheck on powerpc* and sparc64? > > I'll try to build it on ppc32/macmini and sparc64/qemu once it finishes its > current job and report back. Actually, it has some signs of endian-awareness, e.g. in `pire/defs.h' it checks for PIRE_WORDS_BIGENDIAN define; but 1) post-configure, endianness macro is WORDS_BIGENDIAN, not PIRE_WORDS_BIGENDIAN; 2) even with patched `pire/defs.h', tests still fail. Technically it builds under both powerpc and sparc64 without any patches, but I didn't verify whether it really works there (on big-endian) or not. ./danfe