Date: Thu, 24 Sep 2020 20:54:18 +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: r549958 - head/graphics/vv Message-ID: <202009242054.08OKsIHI001204@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Thu Sep 24 20:54:18 2020 New Revision: 549958 URL: https://svnweb.freebsd.org/changeset/ports/549958 Log: graphics/vv: Narrow the SSE2 workaround to i386 because the problem exists only on i386 Modified: head/graphics/vv/Makefile Modified: head/graphics/vv/Makefile ============================================================================== --- head/graphics/vv/Makefile Thu Sep 24 20:52:19 2020 (r549957) +++ head/graphics/vv/Makefile Thu Sep 24 20:54:18 2020 (r549958) @@ -37,8 +37,8 @@ PLIST_FILES= bin/vv .include <bsd.port.pre.mk> -.if ${ARCH} == i386 || ${ARCH} == amd64 -CXXFLAGS+= -msse2 # workaround for https://github.com/open-vv/vv/issues/83 & https://github.com/InsightSoftwareConsortium/ITK/issues/2011 +.if ${ARCH} == i386 +CXXFLAGS+= -msse2 # workaround for ITK failing to add -msse2 on i386: https://github.com/open-vv/vv/issues/83 & https://github.com/InsightSoftwareConsortium/ITK/issues/2011 .endif post-configure: # workaround for "error: unable to find library -lGTest::GTest", see https://github.com/open-vv/vv/issues/74
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009242054.08OKsIHI001204>