Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Oct 2017 18:57:09 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r451559 - head/x11/pixman
Message-ID:  <201710081857.v98Iv9K3028016@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710081857.v98Iv9K3028016>