1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00

devel/volk: Fix build on armv7.

This port does not build on armv7 due to inline assembly unsupported by clang.
Fix the build by compiling with gcc on armv7.

PR:		259447
Approved by:	portmgr (build fix blanket)
This commit is contained in:
Robert Clausecker 2021-10-26 00:05:14 +02:00 committed by Mikael Urankar
parent 6f1e670f1f
commit 79ede500f7

View File

@ -13,9 +13,15 @@ BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/mako/__init__.py:textproc/py-mako@${PY_FLAVO
USES= cmake compiler:c++11-lang python:3.5+
.include <bsd.port.pre.mk>
.if ${ARCH} == armv7
USE_GCC= yes
.endif
USE_GITHUB= yes
GH_ACCOUNT= gnuradio
USE_LDCONFIG= yes
.include <bsd.port.mk>
.include <bsd.port.post.mk>