The option implied a dependency on gcc but clang got openmp support long ago. Remove compiler:openmp from Mk/Uses/compiler.mk For ports using USE=compiler:openmp, just remove it and make them build with clang. Fix conditionals when necessary Bump PORTREVISION where appropriate If problem arises, they can be addressed by using USE_GCC=yes An update to the Porter's Handbook will follow. Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D31971
22 lines
546 B
Makefile
22 lines
546 B
Makefile
# Created by: Pedro Giffuni <pfg@FreeBSD.org>
|
|
|
|
PORTNAME= viennacl
|
|
PORTVERSION= 1.7.1
|
|
PORTREVISION= 6
|
|
CATEGORIES= math
|
|
MASTER_SITES= SF/${PORTNAME}/1.7.x/
|
|
DISTNAME= ViennaCL-${PORTVERSION}
|
|
|
|
MAINTAINER= pfg@FreeBSD.org
|
|
COMMENT= Linear algebra and solver library using CUDA, OpenCL, and OpenMP
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/CL/opencl.h:devel/opencl
|
|
LIB_DEPENDS= libOpenCL.so:devel/ocl-icd
|
|
RUN_DEPENDS= ${LOCALBASE}/include/CL/opencl.h:devel/opencl
|
|
|
|
USES= cmake localbase
|
|
|
|
.include <bsd.port.mk>
|