svn commit: r451559 - head/x11/pixman
Jan Beich
jbeich at FreeBSD.org
Sun Oct 8 18:57:11 UTC 2017
Author: jbeich
Date: Sun Oct 8 18:57:09 2017
New Revision: 451559
URL: https://svnweb.freebsd.org/changeset/ports/451559
Log:
x11/pixman: unbreak on armv7
<instantiation>:1:1: error: unknown directive
.func fname
^
<instantiation>:4:1: note: while in macro instantiation
pixman_asm_function fname
^
pixman-arm-simd-asm-scaled.S:152:1: note: while in macro instantiation
generate_nearest_scanline_func pixman_scaled_nearest_scanline_0565_0565_SRC_asm_armv6, 1, h, 80, 32
^
<instantiation>:39:29: error: invalid immediate shift value
and TMP1, VXMASK, VX, asr #(16 - bpp_shift)
^
pixman-arm-simd-asm-scaled.S:152:1: note: while in macro instantiation
generate_nearest_scanline_func pixman_scaled_nearest_scanline_0565_0565_SRC_asm_armv6, 1, h, 80, 32
^
Modified:
head/x11/pixman/Makefile (contents, props changed)
Modified: head/x11/pixman/Makefile
==============================================================================
--- head/x11/pixman/Makefile Sun Oct 8 18:56:58 2017 (r451558)
+++ head/x11/pixman/Makefile Sun Oct 8 18:57:09 2017 (r451559)
@@ -25,7 +25,7 @@ MAKE_ARGS= SUBDIRS=pixman
.include <bsd.port.pre.mk>
-.if ${ARCH} == "armv6"
+.if ${ARCH} == "armv6" || ${ARCH} == "armv7"
BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils
CONFIGURE_ENV+= CCASFLAGS="${CFLAGS} -no-integrated-as"
.endif
More information about the svn-ports-head
mailing list