diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2020-09-24 20:54:18 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2020-09-24 20:54:18 +0000 |
commit | 23eabf84c4b6a4d5a3b0de69161f0e8063f42b2a (patch) | |
tree | 96e2298a882d2e5db50456481994816abb9d88f5 /graphics | |
parent | 5b04f8873e091172f93a4a1c621bd06435f8ffe7 (diff) |
graphics/vv: Narrow the SSE2 workaround to i386 because the problem exists only on i386
Notes
Notes:
svn path=/head/; revision=549958
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/vv/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/vv/Makefile b/graphics/vv/Makefile index cbca86432b84..8bc7c9bc19ca 100644 --- a/graphics/vv/Makefile +++ b/graphics/vv/Makefile @@ -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 |