From 237da36ede0648baf6f522e5920bd36a60c38f7d Mon Sep 17 00:00:00 2001 From: yuri Date: Sun, 23 Feb 2020 17:55:10 +0000 Subject: misc/vxl: Force SSE2 on amd64 and i386 because the SSE2 auto-detection fails Reported by: fallout --- misc/vxl/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/vxl/Makefile b/misc/vxl/Makefile index 1988d9001c66..1b70a16eaa6d 100644 --- a/misc/vxl/Makefile +++ b/misc/vxl/Makefile @@ -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 -- cgit