Date: Tue, 28 Feb 2017 12:28:24 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r435050 - in branches/2017Q1/security/libgcrypt: . files Message-ID: <201702281228.v1SCSOQC034122@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cpm Date: Tue Feb 28 12:28:24 2017 New Revision: 435050 URL: https://svnweb.freebsd.org/changeset/ports/435050 Log: MFH: r435049 security/libgcrypt: fix build on aarch64 libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I../src -I../src -Wa,--noexecstack -O2 -pipe -fno-strict-aliasing -std=gnu89 -MT cipher-gcm-armv8-aarch64-ce.lo -MD -MP -MF .deps/cipher-gcm-armv8-aarch64-ce.Tpo -c cipher-gcm-armv8-aarch64-ce.S -fPIC -DPIC -o .libs/cipher-gcm-armv8-aarch64-ce.o cipher-gcm-armv8-aarch64-ce.S:190:3: error: instruction requires: neon eor v31.16b, v31.16b, v31.16b ^ PR: 217271 Submitted by: krion Reported by: Simon Rozman <simon@rozman.si> Approved by: ports-secteam (blanket) Added: branches/2017Q1/security/libgcrypt/files/ - copied from r435049, head/security/libgcrypt/files/ Modified: branches/2017Q1/security/libgcrypt/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/security/libgcrypt/Makefile ============================================================================== --- branches/2017Q1/security/libgcrypt/Makefile Tue Feb 28 12:21:13 2017 (r435049) +++ branches/2017Q1/security/libgcrypt/Makefile Tue Feb 28 12:28:24 2017 (r435050) @@ -33,6 +33,10 @@ OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> +.if ${ARCH} == "armv6" || ${ARCH} == "aarch64" +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-aarch64 +.endif + .if ${ARCH} == "powerpc" CONFIGURE_ARGS+= --disable-asm .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702281228.v1SCSOQC034122>