1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

biology/py-scikit-bio: Fix build on the i386 architecture

Reported by:	fallout
MFH:		2020Q3
This commit is contained in:
Yuri Victorovich 2020-09-24 23:16:26 +00:00
parent 0808761b8e
commit 9c49891589
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=549974

View File

@ -28,4 +28,11 @@ RUN_DEPENDS= ${PYNUMPY} \
USES= python:3.7+
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${ARCH} == i386
CFLAGS+= -msse2 # workaround for https://github.com/biocore/scikit-bio/issues/1727
CXXFLAGS+= -msse2
.endif
.include <bsd.port.post.mk>