svn commit: r526931 - head/misc/vxl

Yuri Victorovich yuri at FreeBSD.org
Sun Feb 23 17:55:11 UTC 2020


Author: yuri
Date: Sun Feb 23 17:55:10 2020
New Revision: 526931
URL: https://svnweb.freebsd.org/changeset/ports/526931

Log:
  misc/vxl: Force SSE2 on amd64 and i386 because the SSE2 auto-detection fails
  
  Reported by:	fallout

Modified:
  head/misc/vxl/Makefile

Modified: head/misc/vxl/Makefile
==============================================================================
--- head/misc/vxl/Makefile	Sun Feb 23 17:22:50 2020	(r526930)
+++ head/misc/vxl/Makefile	Sun Feb 23 17:55:10 2020	(r526931)
@@ -31,8 +31,10 @@ do-test:
 
 .if ${ARCH} == "amd64" || ${ARCH} == "i386"
 PLIST_SUB+=	X86=""
+CMAKE_ON+=	VIL_CONFIG_ENABLE_SSE2_ROUNDING # the automatic SSE2 test fails on i386: Performing Try-Run Test VXL_HAS_SSE2_HARDWARE_SUPPORT - Test Compilation Failed
 .else
 PLIST_SUB+=	X86="@comment "
+CMAKE_OFF+=	VIL_CONFIG_ENABLE_SSE2_ROUNDING
 .endif
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list