From owner-freebsd-gecko@freebsd.org Tue Nov 15 07:13:09 2016 Return-Path: Delivered-To: freebsd-gecko@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 BA887C42813 for ; Tue, 15 Nov 2016 07:13:09 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id AA8FF99C for ; Tue, 15 Nov 2016 07:13:09 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.ysv.freebsd.org (Postfix) id A9E2CC42812; Tue, 15 Nov 2016 07:13:09 +0000 (UTC) Delivered-To: gecko@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 A98B3C42810 for ; Tue, 15 Nov 2016 07:13:09 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [192.108.105.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "StartCom Class 2 IV Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 942BD99A; Tue, 15 Nov 2016 07:13:09 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (bones.soaustin.net [192.108.105.22]) by mail.soaustin.net (Postfix) with ESMTPSA id 2F10A1272; Tue, 15 Nov 2016 01:13:08 -0600 (CST) Date: Tue, 15 Nov 2016 01:13:07 -0600 From: Mark Linimon To: gecko@FreeBSD.org Cc: linimon@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r426147 - head/multimedia/openh264] Message-ID: <20161115071306.GA10133@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2016 07:13:09 -0000 OK, I'm going to admit that the fix for this one is over my head. ISTM that the Makefile code is trying to prevent as(1) from being executed for MACHINE = arm or arm64. This is TRT. But I don't think the evaluation is right? portsjail% make MACHINE=arm -V MAKE_ARGS PREFIX="/usr/local" OS=bsd ARCH="x86_64" CCASFLAGS='$(CFLAGS) -no-integrated-as' CFLAGS_OPT="" CFLAGS_DEBUG="" HAVE_GMP_API=Yes DESTDIR=/home/linimon/ports/multimedia/openh264/work/stage mcl ----- Forwarded message from Mark Linimon ----- Date: Tue, 15 Nov 2016 07:10:32 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426147 - head/multimedia/openh264 Author: linimon Date: Tue Nov 15 07:10:32 2016 New Revision: 426147 URL: https://svnweb.freebsd.org/changeset/ports/426147 Log: Mark broken on aarch64. If I understand the code correctly, there is a problem with the MAKE_ARGS logic. Approved by: portmgr (tier-2 blanket) Modified: head/multimedia/openh264/Makefile Modified: head/multimedia/openh264/Makefile ============================================================================== --- head/multimedia/openh264/Makefile Tue Nov 15 06:51:38 2016 (r426146) +++ head/multimedia/openh264/Makefile Tue Nov 15 07:10:32 2016 (r426147) @@ -27,6 +27,8 @@ MAKE_ARGS= PREFIX="${PREFIX}" \ CFLAGS_OPT="" CFLAGS_DEBUG="" ALL_TARGET= all +BROKEN_aarch64= Fails to compile: cc: error: unable to execute command: Executable as does not exist + OPTIONS_DEFINE= DEBUG PLUGINS TEST OPTIONS_DEFAULT=PLUGINS OPTIONS_SUB= yes ----- End forwarded message -----