Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Feb 2020 17:55:10 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r526931 - head/misc/vxl
Message-ID:  <202002231755.01NHtADv005079@repo.freebsd.org>

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



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