Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Apr 2020 00:58:51 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r531166 - head/devel/intel-graphics-compiler
Message-ID:  <202004090058.0390wpeo038646@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Thu Apr  9 00:58:51 2020
New Revision: 531166
URL: https://svnweb.freebsd.org/changeset/ports/531166

Log:
  devel/intel-graphics-compiler: unbreak on -CURRENT

Modified:
  head/devel/intel-graphics-compiler/Makefile   (contents, props changed)

Modified: head/devel/intel-graphics-compiler/Makefile
==============================================================================
--- head/devel/intel-graphics-compiler/Makefile	Thu Apr  9 00:49:37 2020	(r531165)
+++ head/devel/intel-graphics-compiler/Makefile	Thu Apr  9 00:58:51 2020	(r531166)
@@ -16,9 +16,6 @@ LICENSE_FILE=	${WRKSRC}/LICENSE.md
 
 ONLY_FOR_ARCHS=	amd64 i386
 ONLY_FOR_ARCHS_REASON=	Only Intel GPUs on x86 are supported
-.if exists(/usr/lib/clang/10.0.0) && ${CXX} == c++
-BROKEN=		https://github.com/intel/intel-graphics-compiler/issues/126
-.endif
 
 LIB_DEPENDS=	libopencl-clang.so:devel/opencl-clang
 
@@ -28,6 +25,13 @@ USE_LDCONFIG=	yes
 GH_ACCOUNT=	intel
 CFLAGS+=	-Wno-macro-redefined # __fastcall
 PLIST_SUB=	ARCH_SUFX=${ARCH:S/i386/32/:S/amd//:S/x86_//}
+
+.if exists(/usr/lib/clang/10.0.0) && ${CXX} == c++
+# https://github.com/intel/intel-graphics-compiler/issues/126
+BUILD_DEPENDS=	clang++90:devel/llvm90
+USES:=		${USES:Ncompiler*}
+CXX=		clang++90
+.endif
 
 post-patch:
 # lang/python* don't install unsuffixed symlinks



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004090058.0390wpeo038646>