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 <[email protected]> ----- Date: Tue, 15 Nov 2016 07:10:32 +0000 (UTC) From: Mark Linimon <[email protected]> To: [email protected], [email protected], [email protected] 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 ----- _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-gecko To unsubscribe, send any mail to "[email protected]"
